diff options
Diffstat (limited to 'usr.sbin/pccard/pccardc/pccardc.c')
-rw-r--r-- | usr.sbin/pccard/pccardc/pccardc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/pccard/pccardc/pccardc.c b/usr.sbin/pccard/pccardc/pccardc.c index 743493b..2de5f9e 100644 --- a/usr.sbin/pccard/pccardc/pccardc.c +++ b/usr.sbin/pccard/pccardc/pccardc.c @@ -38,6 +38,7 @@ typedef int (*main_t)(int, char **); #define DECL(foo) int foo(int, char**); DECL(beep_main); DECL(dumpcis_main); +DECL(dumpcisfile_main); DECL(enabler_main); DECL(help_main); DECL(pccardmem_main); @@ -55,6 +56,7 @@ struct { } subcommands[] = { { "beep", beep_main, "Beep type" }, { "dumpcis", dumpcis_main, "Prints CIS for all cards" }, + { "dumpcisfile", dumpcisfile_main, "Prints CIS from a file" }, { "enabler", enabler_main, "Device driver enabler" }, { "help", help_main, "Prints command summary" }, { "pccardmem", pccardmem_main, "Allocate memory for pccard driver" }, |