]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
serial: st-asc: Fix unused variable warning for non DT.
authorSrinivas Kandagatla <srinivas.kandagatla@st.com>
Fri, 2 Aug 2013 09:23:51 +0000 (10:23 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 3 Aug 2013 03:38:29 +0000 (11:38 +0800)
This patch fixes a below warning reported by kbuild test robot.

drivers/tty/serial/st-asc.c:727:28: warning: 'asc_match' defined but
 not used [-Wunused-variable]

The code used in DT case is now ifdefed under CONFIG_OF to fix this
warning.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com>
Reported-by: Kbuild Test Robot <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/st-asc.c

index 183879825695eaa724aba3cfe358000c1b8bf88b..2ff4b1bb922d5ed839f9242ee83b66f523a73b8f 100644 (file)
@@ -724,12 +724,14 @@ static struct asc_port *asc_of_get_asc_port(struct platform_device *pdev)
        return &asc_ports[id];
 }
 
+#ifdef CONFIG_OF
 static struct of_device_id asc_match[] = {
        { .compatible = "st,asc", },
        {},
 };
 
 MODULE_DEVICE_TABLE(of, asc_match);
+#endif
 
 static int asc_serial_probe(struct platform_device *pdev)
 {