/*-1* Copyright (c) 2005 The FreeBSD Foundation.2*3* SPDX-License-Identifier: BSD-2-Clause4*5* Derived in part from NetBSD's bus.h files by (alphabetically):6* Christopher G. Demetriou7* Charles M. Hannum8* Jason Thorpe9* The NetBSD Foundation.10*/1112#ifndef ARM_INCLUDE__BUS_H13#define ARM_INCLUDE__BUS_H1415/*16* Addresses (in bus space).17*/18typedef u_long bus_addr_t;19typedef u_long bus_size_t;2021/*22* Access methods for bus space.23*/24typedef struct bus_space *bus_space_tag_t;25typedef u_long bus_space_handle_t;2627#endif /* ARM_INCLUDE__BUS_H */282930