}
 CLK_OF_DECLARE(fixed_clk, "fixed-clock", of_fixed_clk_setup);
 
-static int of_fixed_clk_remove(struct platform_device *pdev)
+static void of_fixed_clk_remove(struct platform_device *pdev)
 {
        struct clk_hw *hw = platform_get_drvdata(pdev);
 
        of_clk_del_provider(pdev->dev.of_node);
        clk_hw_unregister_fixed_rate(hw);
-
-       return 0;
 }
 
 static int of_fixed_clk_probe(struct platform_device *pdev)
                .of_match_table = of_fixed_clk_ids,
        },
        .probe = of_fixed_clk_probe,
-       .remove = of_fixed_clk_remove,
+       .remove_new = of_fixed_clk_remove,
 };
 builtin_platform_driver(of_fixed_clk_driver);
 #endif