From: Cedric Le Goater Date: Mon, 23 Sep 2013 12:17:54 +0000 (+0200) Subject: powerpc/kernel: Fix endian issue in rtas_pci X-Git-Tag: v3.13-rc1~20^2~74 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf059965713b71b7301fd88f1e98b31c6484dd46;p=platform%2Fkernel%2Flinux-stable.git powerpc/kernel: Fix endian issue in rtas_pci Signed-off-by: Cédric Le Goater Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/kernel/rtas_pci.c b/arch/powerpc/kernel/rtas_pci.c index 6e7b7cd..7d4c717 100644 --- a/arch/powerpc/kernel/rtas_pci.c +++ b/arch/powerpc/kernel/rtas_pci.c @@ -223,7 +223,7 @@ unsigned long get_phb_buid(struct device_node *phb) static int phb_set_bus_ranges(struct device_node *dev, struct pci_controller *phb) { - const int *bus_range; + const __be32 *bus_range; unsigned int len; bus_range = of_get_property(dev, "bus-range", &len); @@ -231,8 +231,8 @@ static int phb_set_bus_ranges(struct device_node *dev, return 1; } - phb->first_busno = bus_range[0]; - phb->last_busno = bus_range[1]; + phb->first_busno = be32_to_cpu(bus_range[0]); + phb->last_busno = be32_to_cpu(bus_range[1]); return 0; }