spi: dw: Remove unused dw_spi_cleanup function
authorAxel Lin <[email protected]>
Thu, 8 May 2014 11:17:07 +0000 (19:17 +0800)
committerMark Brown <[email protected]>
Mon, 12 May 2014 21:04:18 +0000 (22:04 +0100)
The dw_spi_cleanup() function was removed by commit c63f5da00845
"spi: dw: Don't call kfree for memory allocated by devm_kzalloc".

commit ec37e8e1f0e3 "spi: dw: migrate to generic queue infrastructure" added
dw_spi_cleanup() but never use it. So now I got below build warning:

  CC [M]  drivers/spi/spi-dw.o
drivers/spi/spi-dw.c:609:13: warning: 'dw_spi_cleanup' defined but not used [-Wunused-function]

Signed-off-by: Axel Lin <[email protected]>
Acked-by: Baruch Siach <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
drivers/spi/spi-dw.c

index 9965e1b84832fcc69b642a991b043f03061b1e23..29f33143b795651e773ea7b9d5cc0f80c7cb2575 100644 (file)
@@ -606,12 +606,6 @@ static int dw_spi_setup(struct spi_device *spi)
        return 0;
 }
 
-static void dw_spi_cleanup(struct spi_device *spi)
-{
-       struct chip_data *chip = spi_get_ctldata(spi);
-       kfree(chip);
-}
-
 /* Restart the controller, disable all interrupts, clean rx fifo */
 static void spi_hw_init(struct dw_spi *dws)
 {