Skip to content

Commit 109d587

Browse files
xuruitsbogend
authored andcommitted
MIPS: Fix a compilation issue
arch/mips/include/asm/mach-rc32434/pci.h:377: cc1: error: result of ‘-117440512 << 16’ requires 44 bits to represent, but ‘int’ only has 32 bits [-Werror=shift-overflow=] All bits in KORINA_STAT are already at the correct position, so there is no addtional shift needed. Signed-off-by: xurui <xurui@kylinos.cn> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
1 parent f048158 commit 109d587

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • arch/mips/include/asm/mach-rc32434

arch/mips/include/asm/mach-rc32434/pci.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ struct pci_msu {
374374
PCI_CFG04_STAT_SSE | \
375375
PCI_CFG04_STAT_PE)
376376

377-
#define KORINA_CNFG1 ((KORINA_STAT<<16)|KORINA_CMD)
377+
#define KORINA_CNFG1 (KORINA_STAT | KORINA_CMD)
378378

379379
#define KORINA_REVID 0
380380
#define KORINA_CLASS_CODE 0

0 commit comments

Comments
 (0)