21 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * linux/drivers/media/platform/samsung/s5p-mfc/s5p_mfc_pm.h4 *5 * Copyright (C) 2011 Samsung Electronics Co., Ltd.6 * http://www.samsung.com/7 */8 9#ifndef S5P_MFC_PM_H_10#define S5P_MFC_PM_H_11 12int s5p_mfc_init_pm(struct s5p_mfc_dev *dev);13void s5p_mfc_final_pm(struct s5p_mfc_dev *dev);14 15int s5p_mfc_clock_on(struct s5p_mfc_dev *dev);16void s5p_mfc_clock_off(struct s5p_mfc_dev *dev);17int s5p_mfc_power_on(struct s5p_mfc_dev *dev);18int s5p_mfc_power_off(struct s5p_mfc_dev *dev);19 20#endif /* S5P_MFC_PM_H_ */21