#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_address.h>
-#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
void __iomem *base;
int num_clks, r;
- mcd = of_device_get_match_data(&pdev->dev);
+ mcd = device_get_match_data(&pdev->dev);
if (!mcd)
return -EINVAL;
int mtk_clk_simple_remove(struct platform_device *pdev)
{
- const struct mtk_clk_desc *mcd = of_device_get_match_data(&pdev->dev);
+ const struct mtk_clk_desc *mcd = device_get_match_data(&pdev->dev);
struct clk_hw_onecell_data *clk_data = platform_get_drvdata(pdev);
struct device_node *node = pdev->dev.of_node;