diff options
author | 2006-05-28 02:10:55 +0000 | |
---|---|---|
committer | 2006-05-28 02:10:55 +0000 | |
commit | 00b418e65d166a1ef64de9be61b1784416dce64a (patch) | |
tree | 7060a96512df97ec125b6dff88eeda0608679841 | |
parent | make use of the new hotplug events for sensors showing up or vanishing (diff) | |
download | wireguard-openbsd-00b418e65d166a1ef64de9be61b1784416dce64a.tar.xz wireguard-openbsd-00b418e65d166a1ef64de9be61b1784416dce64a.zip |
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 |