aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2016-08-02 00:10:30 -0400
committerMichael Ellerman <mpe@ellerman.id.au>2016-10-04 01:29:23 -0400
commita7032132d7560a8434e1f54b71efd7fa20f073bd (patch)
tree82688b97fe371368b2d01c1e0cfc9fe7a2c51689
parentd63e51b31e0b655ed0f581b8a8fd4c4b4f8d1919 (diff)
powerpc/powernv: Use CPU-endian hub diag-data type in pnv_eeh_get_and_dump_hub_diag()
The hub diag-data type is filled with big-endian data by OPAL call opal_pci_get_hub_diag_data(). We need convert it to CPU-endian value before using it. The issue is reported by sparse as pointed by Michael Ellerman: eeh-powernv.c:1309:21: warning: restricted __be16 degrades to integer This converts hub diag-data type to CPU-endian before using it in pnv_eeh_get_and_dump_hub_diag(). Fixes: 2a485ad7c88d ("powerpc/powernv: Drop PHB operation next_error()") Cc: stable@vger.kernel.org # v4.1+ Suggested-by: Michael Ellerman <mpe@ellerman.id.au> Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Reviewed-by: Russell Currey <ruscur@russell.cc> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
-rw-r--r--arch/powerpc/platforms/powernv/eeh-powernv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/powernv/eeh-powernv.c b/arch/powerpc/platforms/powernv/eeh-powernv.c
index 1596a7e3ff19..2354ea51e871 100644
--- a/arch/powerpc/platforms/powernv/eeh-powernv.c
+++ b/arch/powerpc/platforms/powernv/eeh-powernv.c
@@ -1314,7 +1314,7 @@ static void pnv_eeh_get_and_dump_hub_diag(struct pci_controller *hose)
1314 return; 1314 return;
1315 } 1315 }
1316 1316
1317 switch (data->type) { 1317 switch (be16_to_cpu(data->type)) {
1318 case OPAL_P7IOC_DIAG_TYPE_RGC: 1318 case OPAL_P7IOC_DIAG_TYPE_RGC:
1319 pr_info("P7IOC diag-data for RGC\n\n"); 1319 pr_info("P7IOC diag-data for RGC\n\n");
1320 pnv_eeh_dump_hub_diag_common(data); 1320 pnv_eeh_dump_hub_diag_common(data);