aboutsummaryrefslogtreecommitdiff
path: root/share/examples/drivers
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2000-11-12 10:46:38 +0000
committerJulian Elischer <julian@FreeBSD.org>2000-11-12 10:46:38 +0000
commit7dd17df71d928ce75de2d797d4e9442c77de4919 (patch)
tree1f4ea42a35632ded2526fb526593af65be847b22 /share/examples/drivers
parentecc50bd485538fdaee3516c178f845614f27a33c (diff)
downloadsrc-7dd17df71d928ce75de2d797d4e9442c77de4919.tar.gz
src-7dd17df71d928ce75de2d797d4e9442c77de4919.zip
Share one devclass between ISA and PCI sections
This will ensure unit numbers will co-ordinate between them
Notes
Notes: svn path=/head/; revision=68630
Diffstat (limited to 'share/examples/drivers')
-rwxr-xr-xshare/examples/drivers/make_device_driver.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/examples/drivers/make_device_driver.sh b/share/examples/drivers/make_device_driver.sh
index f2b668f1b4eb..597e1a80e44b 100755
--- a/share/examples/drivers/make_device_driver.sh
+++ b/share/examples/drivers/make_device_driver.sh
@@ -234,6 +234,8 @@ static struct cdevsw ${1}_cdevsw = {
/* flags */ 0,
/* bmaj */ -1
};
+
+static devclass_t ${1}_devclass;
/*****************************************\
* ISA Attachment structures and functions
@@ -263,7 +265,6 @@ static driver_t ${1}_isa_driver = {
sizeof (struct ${1}_softc)
};
-static devclass_t ${1}_devclass;
DRIVER_MODULE(${1}, isa, ${1}_isa_driver, ${1}_devclass, 0, 0);
@@ -537,9 +538,8 @@ static driver_t ${1}_pci_driver = {
sizeof(struct ${1}_softc),
};
-static devclass_t ${1}_pci_devclass;
-DRIVER_MODULE(${1}, pci, ${1}_pci_driver, ${1}_pci_devclass, 0, 0);
+DRIVER_MODULE(${1}, pci, ${1}_pci_driver, ${1}_devclass, 0, 0);
static struct _pcsid
{