From 0e25389896841fbaa345d352bec12958fcb6c507 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Tue, 10 Nov 2015 12:24:25 +1100 Subject: sparse: fix beint32_t degrades to int wantings in hdata/spira.c hdata/spira.c:757:14: warning: restricted beint32_t degrades to integer hdata/spira.c:773:14: warning: restricted beint32_t degrades to integer Signed-off-by: Stewart Smith --- hdata/spira.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hdata/spira.c') diff --git a/hdata/spira.c b/hdata/spira.c index b35ca9cb..d0b0ce86 100644 --- a/hdata/spira.c +++ b/hdata/spira.c @@ -754,7 +754,7 @@ static void add_iplparams_ipl_params(const void *iplp, struct dt_node *node) * and the FSP expects the firmware to reset the PCI bus * numbers and respond with a Power Down (CE,4D,02) message */ - if (p->other_attrib & IPLPARAMS_OATTR_RST_PCI_BUSNO) + if (be32_to_cpu(p->other_attrib) & IPLPARAMS_OATTR_RST_PCI_BUSNO) dt_add_property_cells(node, "pci-busno-reset-ipl", 1); dt_add_property_strings(node, "cec-ipl-side", (p->ipl_side & IPLPARAMS_CEC_FW_IPL_SIDE_TEMP) ? @@ -770,7 +770,7 @@ static void add_iplparams_ipl_params(const void *iplp, struct dt_node *node) led_node = dt_find_by_path(opal_node, DT_PROPERTY_LED_NODE); assert(led_node); - if (p->other_attrib & IPLPARAMS_OATRR_LIGHT_PATH) + if (be32_to_cpu(p->other_attrib) & IPLPARAMS_OATRR_LIGHT_PATH) dt_add_property_strings(led_node, DT_PROPERTY_LED_MODE, LED_MODE_LIGHT_PATH); else -- cgit v1.2.1