[PATCH] ACPI: increase PCIBIOS_MIN_IO on x86

We have increased PCIBIOS_MIN_IO to 0x4000, but still want
motherboard resources to be allocated properly. So we need
to state 0x1000 (according to the comment) limit explicitely.

Signed-off-by: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by Ivan Kokshaysky and committed by Linus Torvalds 0b2bfb4e 71db63ac

+1 -1
+1 -1
drivers/acpi/motherboard.c
··· 43 43 */ 44 44 #define IS_RESERVED_ADDR(base, len) \ 45 45 (((len) > 0) && ((base) > 0) && ((base) + (len) < IO_SPACE_LIMIT) \ 46 - && ((base) + (len) > PCIBIOS_MIN_IO)) 46 + && ((base) + (len) > 0x1000)) 47 47 48 48 /* 49 49 * Clearing the flag (IORESOURCE_BUSY) allows drivers to use