MIPS: ralink: rename gpio_pinmux to rt_gpio_pinmux
authorJohn Crispin <blogic@openwrt.org>
Fri, 12 Apr 2013 20:12:09 +0000 (22:12 +0200)
committerRalf Baechle <ralf@linux-mips.org>
Tue, 7 May 2013 23:19:08 +0000 (01:19 +0200)
Add proper namespacing to the variable.

Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/5171/

arch/mips/ralink/common.h
arch/mips/ralink/rt305x.c

index 300990313e1b3acdd85486c1a8b743c4f8e4b653..f4b19c679ed4a2a846333b3db5f2d2a8e53f1892 100644 (file)
@@ -24,7 +24,7 @@ struct ralink_pinmux {
        int uart_shift;
        void (*wdt_reset)(void);
 };
-extern struct ralink_pinmux gpio_pinmux;
+extern struct ralink_pinmux rt_gpio_pinmux;
 
 struct ralink_soc_info {
        unsigned char sys_type[RAMIPS_SYS_TYPE_LEN];
index 5d49a54ba8fa4243c90ae1bb0ace1b126a6f3a8a..f1a6c330826c3946da29ac587e0e4f8f872f666f 100644 (file)
@@ -114,7 +114,7 @@ void rt305x_wdt_reset(void)
        rt_sysc_w32(t, SYSC_REG_SYSTEM_CONFIG);
 }
 
-struct ralink_pinmux gpio_pinmux = {
+struct ralink_pinmux rt_gpio_pinmux = {
        .mode = mode_mux,
        .uart = uart_mux,
        .uart_shift = RT305X_GPIO_MODE_UART0_SHIFT,