return 0;
 }
 
-static int raspberrypi_fw_pll_is_on(struct clk_hw *hw)
+static int raspberrypi_fw_is_prepared(struct clk_hw *hw)
 {
        struct raspberrypi_clk_data *data =
                container_of(hw, struct raspberrypi_clk_data, hw);
 }
 
 static const struct clk_ops raspberrypi_firmware_pll_clk_ops = {
-       .is_prepared = raspberrypi_fw_pll_is_on,
+       .is_prepared = raspberrypi_fw_is_prepared,
        .recalc_rate = raspberrypi_fw_pll_get_rate,
        .set_rate = raspberrypi_fw_pll_set_rate,
        .determine_rate = raspberrypi_pll_determine_rate,