diff options
author | Paul Bolle <pebolle@tiscali.nl> | 2013-03-27 00:47:03 +0000 |
---|---|---|
committer | Michael Ellerman <michael@ellerman.id.au> | 2013-04-18 13:03:53 +1000 |
commit | 933ee7119fb14156f46dc8bce8218f62db13c568 (patch) | |
tree | d42fe89c8f7a28351e8139743601c45c9c6a32df /drivers/pnp | |
parent | 9850baed30dd445b0a2bb58045b8edff74953952 (diff) | |
download | linux-3.10-933ee7119fb14156f46dc8bce8218f62db13c568.tar.gz linux-3.10-933ee7119fb14156f46dc8bce8218f62db13c568.tar.bz2 linux-3.10-933ee7119fb14156f46dc8bce8218f62db13c568.zip |
powerpc: remove PReP platform
PPC_PREP is marked as BROKEN since v2.6.15. Remove all PReP specific
code now.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Diffstat (limited to 'drivers/pnp')
-rw-r--r-- | drivers/pnp/pnpbios/core.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/pnp/pnpbios/core.c b/drivers/pnp/pnpbios/core.c index 5d66e5585f9..9b86a01af63 100644 --- a/drivers/pnp/pnpbios/core.c +++ b/drivers/pnp/pnpbios/core.c @@ -513,10 +513,6 @@ static int __init pnpbios_init(void) { int ret; -#if defined(CONFIG_PPC) - if (check_legacy_ioport(PNPBIOS_BASE)) - return -ENODEV; -#endif if (pnpbios_disabled || dmi_check_system(pnpbios_dmi_table) || paravirt_enabled()) { printk(KERN_INFO "PnPBIOS: Disabled\n"); @@ -570,10 +566,7 @@ fs_initcall(pnpbios_init); static int __init pnpbios_thread_init(void) { struct task_struct *task; -#if defined(CONFIG_PPC) - if (check_legacy_ioport(PNPBIOS_BASE)) - return 0; -#endif + if (pnpbios_disabled) return 0; |