Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright (c) 2020 Krzysztof Kozlowski <krzk@kernel.org>
0004  */
0005 
0006 #ifndef __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
0007 #define __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
0008 
0009 /**
0010  * struct s3c2410_clk_platform_data - platform data for S3C2410 clock driver
0011  *
0012  * @modify_misccr: Function to modify the MISCCR and return the new value
0013  */
0014 struct s3c2410_clk_platform_data {
0015     unsigned int (*modify_misccr)(unsigned int clr, unsigned int chg);
0016 };
0017 
0018 #endif /* __LINUX_PLATFORM_DATA_CLK_S3C2410_H_ */
0019