diff options
author | 2025-02-28 00:06:28 +0530 | |
---|---|---|
committer | 2025-03-19 10:22:22 +0100 | |
commit | ae2b6c6850561926a2a18c3b725b0917f11bc7e6 (patch) | |
tree | 8ae779e36c1e2011c33b92cedbc4ea74dcab3147 | |
parent | MIPS: ds1287: Match ds1287_set_base_clock() function types (diff) | |
download | wireguard-linux-ae2b6c6850561926a2a18c3b725b0917f11bc7e6.tar.xz wireguard-linux-ae2b6c6850561926a2a18c3b725b0917f11bc7e6.zip |
MIPS: Fix Macro name
Add missing underscore in PCI_CFGA_BUS macro definition for consistency.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=219744
Signed-off-by: Abhishek Tamboli <abhishektamboli9@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r-- | arch/mips/include/asm/mach-rc32434/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/mach-rc32434/pci.h b/arch/mips/include/asm/mach-rc32434/pci.h index 3eb767c8a4ee..e17ce82d02ba 100644 --- a/arch/mips/include/asm/mach-rc32434/pci.h +++ b/arch/mips/include/asm/mach-rc32434/pci.h @@ -167,7 +167,7 @@ struct pci_msu { #define PCI_CFGA_DEV 0x0000f800 #define PCI_CFGA_DEV_INTERN 0 #define PCI_CFGA_BUS_BIT 16 -#define PCI CFGA_BUS 0x00ff0000 +#define PCI_CFGA_BUS 0x00ff0000 #define PCI_CFGA_BUS_TYPE0 0 #define PCI_CFGA_EN (1 << 31) |