]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
spi: exynos: Fix compiler warnings for non-dt systems
authorVivek Gautam <gautam.vivek@samsung.com>
Tue, 5 Mar 2013 03:49:57 +0000 (03:49 +0000)
committerMinkyu Kang <mk7.kang@samsung.com>
Fri, 29 Mar 2013 02:16:25 +0000 (11:16 +0900)
Enclosing process_nodes() and spi_get_config() inside
CONFIG_OF_CONTROL, since they are compiled only for DT systems.

This fixes following warning:
exynos_spi.c:391:12: warning: 'process_nodes' defined but not used [-Wunused-function]

Signed-off-by: Vivek Gautam <gautam.vivek@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
drivers/spi/exynos_spi.c

index be60ada2ba43a17ecda4a8b968b08b791f0af73f..2260d59c05e0d56a7f817f4feb5d22bbbdeccc0e 100644 (file)
@@ -360,6 +360,7 @@ static inline struct exynos_spi *get_spi_base(int dev_index)
  * @param bus   SPI bus structure to fill with information
  * @return 0 if ok, or -FDT_ERR_NOTFOUND if something was missing
  */
+#ifdef CONFIG_OF_CONTROL
 static int spi_get_config(const void *blob, int node, struct spi_bus *bus)
 {
        bus->node = node;
@@ -415,6 +416,7 @@ static int process_nodes(const void *blob, int node_list[], int count)
 
        return 0;
 }
+#endif
 
 /* Sadly there is no error return from this function */
 void spi_init(void)