diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-09-27 03:18:55 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-10-02 06:27:36 -0400 |
commit | 07bd1c4a82d1787d6acc32b5e3873cca24f39769 (patch) | |
tree | 313a29b73f9b4f2e19fa9f27651d20295eb4b031 /drivers/pnp | |
parent | 61e37ca22b717a9edc3e5e7c7f3603fad464c76d (diff) |
[POWERPC] Use check_legacy_ioport() for ISAPnP
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/pnp')
-rw-r--r-- | drivers/pnp/isapnp/core.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/pnp/isapnp/core.c b/drivers/pnp/isapnp/core.c index f2e0179962e2..3ac5b123215a 100644 --- a/drivers/pnp/isapnp/core.c +++ b/drivers/pnp/isapnp/core.c | |||
@@ -1049,6 +1049,10 @@ static int __init isapnp_init(void) | |||
1049 | printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n"); | 1049 | printk(KERN_INFO "isapnp: ISA Plug & Play support disabled\n"); |
1050 | return 0; | 1050 | return 0; |
1051 | } | 1051 | } |
1052 | #ifdef CONFIG_PPC_MERGE | ||
1053 | if (check_legacy_ioport(_PIDXR) || check_legacy_ioport(_PNPWRP)) | ||
1054 | return -EINVAL; | ||
1055 | #endif | ||
1052 | #ifdef ISAPNP_REGION_OK | 1056 | #ifdef ISAPNP_REGION_OK |
1053 | if (!request_region(_PIDXR, 1, "isapnp index")) { | 1057 | if (!request_region(_PIDXR, 1, "isapnp index")) { |
1054 | printk(KERN_ERR "isapnp: Index Register 0x%x already used\n", _PIDXR); | 1058 | printk(KERN_ERR "isapnp: Index Register 0x%x already used\n", _PIDXR); |