diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2006-05-28 02:10:56 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2006-05-28 02:10:56 +0000 |
commit | a6065a00ebc5124057cae5d5d027738b14b81255 (patch) | |
tree | 604f6698f8e413204e91cd5d1d0411bcebf47298 | |
parent | bf60f7621e9c87ef370304f34d38d43fa35150e0 (diff) |
new field at end of struct, discussed with theo
-rw-r--r-- | sys/sys/hotplug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/hotplug.h b/sys/sys/hotplug.h index 23275067084..56bd9be57de 100644 --- a/sys/sys/hotplug.h +++ b/sys/sys/hotplug.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hotplug.h,v 1.2 2006/05/28 01:33:50 mk Exp $ */ +/* $OpenBSD: hotplug.h,v 1.3 2006/05/28 02:10:55 henning Exp $ */ /* * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org> * @@ -27,10 +27,10 @@ #define HOTPLUG_DEVDT 0x02 /* device detached */ struct hotplug_event { - int he_devid; /* device id */ int he_type; /* event type */ enum devclass he_devclass; /* device class */ char he_devname[16]; /* device name */ + int he_devid; /* device id */ }; #ifdef _KERNEL |