diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2007-08-15 12:32:12 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-08-24 01:27:24 -0400 |
commit | 4f0217e30249ac0eb13b65ef64f2aee627465da2 (patch) | |
tree | a3a46b93bcd2356ee7c364bb3323ef70d23b1c41 /drivers/pnp/pnpbios | |
parent | 6c504d30a48157b7c05a0dfb6a799c72095e957d (diff) |
PNP: remove MODULE infrastructure
We don't support building any part of PNP as a module (*drivers* can be
modules, of course, but the PNP infrastructure itself can not). Since
MODULE will never be defined, remove the ifdefs and dead code.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Acked-by: Adam Belay <abelay@novell.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/pnp/pnpbios')
-rw-r--r-- | drivers/pnp/pnpbios/core.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/drivers/pnp/pnpbios/core.c b/drivers/pnp/pnpbios/core.c index 9892a6afe46c..0691f473e9d4 100644 --- a/drivers/pnp/pnpbios/core.c +++ b/drivers/pnp/pnpbios/core.c | |||
@@ -419,7 +419,6 @@ static void __init build_devlist(void) | |||
419 | static int pnpbios_disabled; | 419 | static int pnpbios_disabled; |
420 | int pnpbios_dont_use_current_config; | 420 | int pnpbios_dont_use_current_config; |
421 | 421 | ||
422 | #ifndef MODULE | ||
423 | static int __init pnpbios_setup(char *str) | 422 | static int __init pnpbios_setup(char *str) |
424 | { | 423 | { |
425 | int invert; | 424 | int invert; |
@@ -443,7 +442,6 @@ static int __init pnpbios_setup(char *str) | |||
443 | } | 442 | } |
444 | 443 | ||
445 | __setup("pnpbios=", pnpbios_setup); | 444 | __setup("pnpbios=", pnpbios_setup); |
446 | #endif | ||
447 | 445 | ||
448 | /* PnP BIOS signature: "$PnP" */ | 446 | /* PnP BIOS signature: "$PnP" */ |
449 | #define PNP_SIGNATURE (('$' << 0) + ('P' << 8) + ('n' << 16) + ('P' << 24)) | 447 | #define PNP_SIGNATURE (('$' << 0) + ('P' << 8) + ('n' << 16) + ('P' << 24)) |
@@ -607,48 +605,7 @@ static int __init pnpbios_thread_init(void) | |||
607 | return 0; | 605 | return 0; |
608 | } | 606 | } |
609 | 607 | ||
610 | #ifndef MODULE | ||
611 | |||
612 | /* init/main.c calls pnpbios_init early */ | ||
613 | |||
614 | /* Start the kernel thread later: */ | 608 | /* Start the kernel thread later: */ |
615 | module_init(pnpbios_thread_init); | 609 | module_init(pnpbios_thread_init); |
616 | 610 | ||
617 | #else | ||
618 | |||
619 | /* | ||
620 | * N.B.: Building pnpbios as a module hasn't been fully implemented | ||
621 | */ | ||
622 | |||
623 | MODULE_LICENSE("GPL"); | ||
624 | |||
625 | static int __init pnpbios_init_all(void) | ||
626 | { | ||
627 | int r; | ||
628 | |||
629 | r = pnpbios_init(); | ||
630 | if (r) | ||
631 | return r; | ||
632 | r = pnpbios_thread_init(); | ||
633 | if (r) | ||
634 | return r; | ||
635 | return 0; | ||
636 | } | ||
637 | |||
638 | static void __exit pnpbios_exit(void) | ||
639 | { | ||
640 | #ifdef CONFIG_HOTPLUG | ||
641 | unloading = 1; | ||
642 | wait_for_completion(&unload_sem); | ||
643 | #endif | ||
644 | pnpbios_proc_exit(); | ||
645 | /* We ought to free resources here */ | ||
646 | return; | ||
647 | } | ||
648 | |||
649 | module_init(pnpbios_init_all); | ||
650 | module_exit(pnpbios_exit); | ||
651 | |||
652 | #endif | ||
653 | |||
654 | EXPORT_SYMBOL(pnpbios_protocol); | 611 | EXPORT_SYMBOL(pnpbios_protocol); |