diff options
author | Kevin Hao <haokexin@gmail.com> | 2013-05-21 08:04:59 -0400 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2013-08-07 19:38:07 -0400 |
commit | 2d49c42a304750c5c38c9533d48bcc3fd7f8fe61 (patch) | |
tree | 721546e4f134541561432051813a1312794ab4d5 /arch/powerpc/sysdev | |
parent | 7d4d595dad30328bc6153e235d90f54c918fc127 (diff) |
powerpc/fsl-pci: fix the unreachable warning message
The (1ull << mem_log) is never greater than mem unless mem_log++;
Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/fsl_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c index 3409758c78b2..57e9aca53426 100644 --- a/arch/powerpc/sysdev/fsl_pci.c +++ b/arch/powerpc/sysdev/fsl_pci.c | |||
@@ -301,10 +301,10 @@ static void setup_pci_atmu(struct pci_controller *hose) | |||
301 | if (early_find_capability(hose, 0, 0, PCI_CAP_ID_EXP)) { | 301 | if (early_find_capability(hose, 0, 0, PCI_CAP_ID_EXP)) { |
302 | /* Size window to exact size if power-of-two or one size up */ | 302 | /* Size window to exact size if power-of-two or one size up */ |
303 | if ((1ull << mem_log) != mem) { | 303 | if ((1ull << mem_log) != mem) { |
304 | mem_log++; | ||
304 | if ((1ull << mem_log) > mem) | 305 | if ((1ull << mem_log) > mem) |
305 | pr_info("%s: Setting PCI inbound window " | 306 | pr_info("%s: Setting PCI inbound window " |
306 | "greater than memory size\n", name); | 307 | "greater than memory size\n", name); |
307 | mem_log++; | ||
308 | } | 308 | } |
309 | 309 | ||
310 | piwar |= ((mem_log - 1) & PIWAR_SZ_MASK); | 310 | piwar |= ((mem_log - 1) & PIWAR_SZ_MASK); |