diff options
author | mdodd <mdodd@FreeBSD.org> | 2003-03-29 14:50:14 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2003-03-29 14:50:14 +0000 |
commit | 984fbf4470d722a17a91747faedf81b239ce8f66 (patch) | |
tree | bcc571b57d0b28b23ac06369bcd21174c5623978 /sys/dev/dpt | |
parent | da71607d13be4cc8225378d7db6feb6342aa43c0 (diff) | |
download | FreeBSD-src-984fbf4470d722a17a91747faedf81b239ce8f66.zip FreeBSD-src-984fbf4470d722a17a91747faedf81b239ce8f66.tar.gz |
Don't compile the identify method yet.
Diffstat (limited to 'sys/dev/dpt')
-rw-r--r-- | sys/dev/dpt/dpt_isa.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/dpt/dpt_isa.c b/sys/dev/dpt/dpt_isa.c index 8b0b131..708bb69 100644 --- a/sys/dev/dpt/dpt_isa.c +++ b/sys/dev/dpt/dpt_isa.c @@ -43,7 +43,9 @@ #include <dev/dpt/dpt.h> +#ifdef notyet static void dpt_isa_identify (driver_t *, device_t); +#endif static int dpt_isa_probe (device_t); static int dpt_isa_attach (device_t); static int dpt_isa_detach (device_t); @@ -81,6 +83,7 @@ dpt_isa_valid_ioport (int ioport) return (1); } +#ifdef notyet static void dpt_isa_identify (driver_t *driver, device_t parent) { @@ -108,6 +111,7 @@ dpt_isa_identify (driver_t *driver, device_t parent) } return; } +#endif static int dpt_isa_probe (device_t dev) |