Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2020 Krzysztof Kozlowski <krzk@kernel.org>
4 */
5
6#ifndef __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
7#define __LINUX_PLATFORM_DATA_CLK_S3C2410_H_
8
9/**
10 * struct s3c2410_clk_platform_data - platform data for S3C2410 clock driver
11 *
12 * @modify_misccr: Function to modify the MISCCR and return the new value
13 */
14struct s3c2410_clk_platform_data {
15 unsigned int (*modify_misccr)(unsigned int clr, unsigned int chg);
16};
17
18#endif /* __LINUX_PLATFORM_DATA_CLK_S3C2410_H_ */
19