aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/bios
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-02-21 21:10:55 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-02-21 21:10:55 +0000
commitdc08ffec870569914f44bcf26aa838310e343764 (patch)
tree0896a7d99c90ad922a1e4b41f052d155256cb97e /sys/i386/bios
parentc33f7bb853b2c9fc395b43274891a8975a675553 (diff)
downloadsrc-dc08ffec870569914f44bcf26aa838310e343764.tar.gz
src-dc08ffec870569914f44bcf26aa838310e343764.zip
Device megapatch 4/6:
Introduce d_version field in struct cdevsw, this must always be initialized to D_VERSION. Flip sense of D_NOGIANT flag to D_NEEDGIANT, this involves removing four D_NOGIANT flags and adding 145 D_NEEDGIANT flags.
Notes
Notes: svn path=/head/; revision=126080
Diffstat (limited to 'sys/i386/bios')
-rw-r--r--sys/i386/bios/apm.c2
-rw-r--r--sys/i386/bios/smapi.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/sys/i386/bios/apm.c b/sys/i386/bios/apm.c
index 1e2371fef54a..6145d9f71e98 100644
--- a/sys/i386/bios/apm.c
+++ b/sys/i386/bios/apm.c
@@ -108,6 +108,8 @@ static d_ioctl_t apmioctl;
static d_poll_t apmpoll;
static struct cdevsw apm_cdevsw = {
+ .d_version = D_VERSION,
+ .d_flags = D_NEEDGIANT,
.d_open = apmopen,
.d_close = apmclose,
.d_write = apmwrite,
diff --git a/sys/i386/bios/smapi.c b/sys/i386/bios/smapi.c
index 200bcfc760fb..3e9aab8189f7 100644
--- a/sys/i386/bios/smapi.c
+++ b/sys/i386/bios/smapi.c
@@ -75,9 +75,10 @@ devclass_t smapi_devclass;
static d_ioctl_t smapi_ioctl;
static struct cdevsw smapi_cdevsw = {
+ .d_version = D_VERSION,
.d_ioctl = smapi_ioctl,
.d_name = "smapi",
- .d_flags = D_MEM,
+ .d_flags = D_MEM | D_NEEDGIANT,
};
static void smapi_identify (driver_t *, device_t);