diff options
author | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-09-03 06:01:01 +0000 |
---|---|---|
committer | Matthew N. Dodd <mdodd@FreeBSD.org> | 1999-09-03 06:01:01 +0000 |
commit | 24904a11b3a80c3f3ce02adfab73d7c6bd25c9e8 (patch) | |
tree | 47ca796bd2b59df5e45fdbf29b47ca175aebae5f /sbin | |
parent | 7012bab98808944e9803bbe0df1924b86e1d2671 (diff) | |
download | src-24904a11b3a80c3f3ce02adfab73d7c6bd25c9e8.tar.gz src-24904a11b3a80c3f3ce02adfab73d7c6bd25c9e8.zip |
Get this to compile again. struct pnp_cinfo went away so
this is just a temporary hack until someone figures out
what they want to do with the override tables etc.
Example copied: sys/isa/{pnp,sio}.c
Notes
Notes:
svn path=/head/; revision=50831
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/kget/kget.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sbin/kget/kget.c b/sbin/kget/kget.c index 24e1cb26cf3d..7ee35ae0b6b9 100644 --- a/sbin/kget/kget.c +++ b/sbin/kget/kget.c @@ -31,7 +31,9 @@ #include <sys/types.h> #include <sys/sysctl.h> #include <isa/isa_device.h> +#if 0 #include <isa/pnp.h> +#endif struct isa_device *id; struct pnp_cinfo *c; @@ -111,6 +113,7 @@ main(int argc, char *argv[]) i+=sizeof(struct isa_device)+8; } free(buf); +#if 0 /* Now, print the changes to PnP override table */ /* get the buffer size */ i=sysctlbyname(mib2,NULL,&len,NULL,NULL); @@ -158,6 +161,7 @@ main(int argc, char *argv[]) } while ((i+=sizeof(struct pnp_cinfo))<len); free(buf); +#endif finish: fprintf(fout,"q\n"); fclose(fout); |