return 0;
 }
 
-static int xilinx_spi_remove(struct platform_device *pdev)
+static void xilinx_spi_remove(struct platform_device *pdev)
 {
        struct spi_master *master = platform_get_drvdata(pdev);
        struct xilinx_spi *xspi = spi_master_get_devdata(master);
        xspi->write_fn(0, regs_base + XIPIF_V123B_DGIER_OFFSET);
 
        spi_master_put(xspi->bitbang.master);
-
-       return 0;
 }
 
 /* work with hotplug and coldplug */
 
 static struct platform_driver xilinx_spi_driver = {
        .probe = xilinx_spi_probe,
-       .remove = xilinx_spi_remove,
+       .remove_new = xilinx_spi_remove,
        .driver = {
                .name = XILINX_SPI_NAME,
                .of_match_table = xilinx_spi_of_match,