]> git.karo-electronics.de Git - karo-tx-linux.git/commit
sparc64: Fix overly strict range type matching for PCI devices.
authorDavid S. Miller <davem@davemloft.net>
Wed, 9 Dec 2009 09:39:09 +0000 (01:39 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 18 Dec 2009 21:44:08 +0000 (13:44 -0800)
commitec5e87a33f85e49acde6ee737c27d48595dd456a
tree3269d7fe07e7c8f459f6aa6aa16ab80625b86f5b
parent91c1e7f6a857670528d6dec7640e5c305cee14e6
sparc64: Fix overly strict range type matching for PCI devices.

[ Upstream commit 4230fa3b89ea1c413766bd411a8315a3d05aa6c7 ]

When we are trying to see if a range property entry applies
to a given address, we are overly strict about the type.

We should only allow I/O ranges for I/O addresses, and only allow
CONFIG space ranges for CONFIG space address.

However for MEM ranges, they come in 32-bit and 64-bit flavors.
And a lack of an exact match is OK if the range is 32-bit and
the address is 64-bit.  We can assign a 64-bit address properly
into a 32-bit parent range just fine.

So allow it.

Reported-by: Patrick Finnegan <pat@computer-refuge.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/sparc/kernel/of_device_64.c