aboutsummaryrefslogtreecommitdiff
path: root/clients/net-snk/oflib/of.c
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2021-10-01 09:10:10 +0200
committerAlexey Kardashevskiy <aik@ozlabs.ru>2021-10-06 13:27:09 +1100
commit81d932ca1f15896716db4270acb05e3679d80fe4 (patch)
tree1bcde338e911a3c225bd8e66fa91c6a084439f14 /clients/net-snk/oflib/of.c
parent0705a5cc1df7ad6bd3c2a7dfb1faccd3b44269c1 (diff)
downloadSLOF-81d932ca1f15896716db4270acb05e3679d80fe4.zip
SLOF-81d932ca1f15896716db4270acb05e3679d80fe4.tar.gz
SLOF-81d932ca1f15896716db4270acb05e3679d80fe4.tar.bz2
Silence some trivial compiler warning in the js2x code
We enabled additional compiler warnings in commit 26d8ba170355c9, but so far we did not address the additional warnings in the js2x code yet. This patch fixes at least some of the trivial warnings there. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Diffstat (limited to 'clients/net-snk/oflib/of.c')
-rw-r--r--clients/net-snk/oflib/of.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/net-snk/oflib/of.c b/clients/net-snk/oflib/of.c
index 5c502ac..365191c 100644
--- a/clients/net-snk/oflib/of.c
+++ b/clients/net-snk/oflib/of.c
@@ -481,7 +481,7 @@ map_one_range(uint64_t *addr, int type, uint32_t *ranges, uint32_t nac,
uint64_t cm, size, pm;
/* only check for the type if nac == 3 (PCI) */
DEBUG_TR("type %x, nac %x\n", ranges[0], nac);
- if (((ranges[0] & 0x03000000) >> 24) != type && nac == 3)
+ if ((((int)ranges[0] & 0x03000000) >> 24) != type && nac == 3)
return -1;
/* okay, it is the same type let's see if we find a mapping */
size = get_dt_address(ranges + nac + pnac, nsc);