diff options
author | dfr <dfr@FreeBSD.org> | 1998-06-14 13:46:10 +0000 |
---|---|---|
committer | dfr <dfr@FreeBSD.org> | 1998-06-14 13:46:10 +0000 |
commit | dc295ed278eb0235154462b23615e89213bc591c (patch) | |
tree | 0734d180ccb27bfdde5cd04d1961394e2e0ac94f /sys/alpha/tlsb/gbusvar.h | |
parent | a7d3dec6df55d42bcb12806631798932380ce34b (diff) | |
download | FreeBSD-src-dc295ed278eb0235154462b23615e89213bc591c.zip FreeBSD-src-dc295ed278eb0235154462b23615e89213bc591c.tar.gz |
Major changes to the generic device framework for FreeBSD/alpha:
* Eliminate bus_t and make it possible for all devices to have
attached children.
* Support dynamically extendable interfaces for drivers to replace
both the function pointers in driver_t and bus_ops_t (which has been
removed entirely. Two system defined interfaces have been defined,
'device' which is mandatory for all devices and 'bus' which is
recommended for all devices which support attached children.
* In addition, the alpha port defines two simple interfaces 'clock'
for attaching various real time clocks to the system and 'mcclock'
for the many different variations of mc146818 clocks which can be
attached to different alpha platforms. This eliminates two more
function pointer tables in favour of the generic method dispatch
system provided by the device framework.
Future device interfaces may include:
* cdev and bdev interfaces for devfs to use in replacement for specfs
and the fixed interfaces bdevsw and cdevsw.
* scsi interface to replace struct scsi_adapter (not sure how this
works in CAM but I imagine there is something similar there).
* various tailored interfaces for different bus types such as pci,
isa, pccard etc.
Diffstat (limited to 'sys/alpha/tlsb/gbusvar.h')
-rw-r--r-- | sys/alpha/tlsb/gbusvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/alpha/tlsb/gbusvar.h b/sys/alpha/tlsb/gbusvar.h index 1575817..5ece6e0 100644 --- a/sys/alpha/tlsb/gbusvar.h +++ b/sys/alpha/tlsb/gbusvar.h @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: gbusvar.h,v 1.2 1998/06/10 20:40:59 dfr Exp $ */ /* $NetBSD: gbusvar.h,v 1.1 1998/05/13 02:50:29 thorpej Exp $ */ @@ -81,7 +81,7 @@ enum gbus_device_ivars { static __inline T gbus_get_ ## A(device_t dev) \ { \ u_long v; \ - bus_read_ivar(device_get_parent(dev), dev, GBUS_IVAR_ ## B, &v); \ + BUS_READ_IVAR(device_get_parent(dev), dev, GBUS_IVAR_ ## B, &v); \ return (T) v; \ } |