// SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2016 MediaTek Inc. * Author: Ming Hsiu Tsai <[email protected]> */ #include <linux/clk.h> #include <linux/device.h> #include <linux/of.h> #include "mtk_mdp_comp.h" void mtk_mdp_comp_clock_on(struct device *dev, struct mtk_mdp_comp *comp) { … } void mtk_mdp_comp_clock_off(struct device *dev, struct mtk_mdp_comp *comp) { … } int mtk_mdp_comp_init(struct device *dev, struct device_node *node, struct mtk_mdp_comp *comp, enum mtk_mdp_comp_type comp_type) { … } void mtk_mdp_comp_deinit(struct device *dev, struct mtk_mdp_comp *comp) { … }