]> Git Repo - linux.git/blob - include/linux/platform_data/regulator-haptic.h
Linux 6.14-rc3
[linux.git] / include / linux / platform_data / regulator-haptic.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Regulator Haptic Platform Data
4  *
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  * Author: Jaewon Kim <[email protected]>
7  * Author: Hyunhee Kim <[email protected]>
8  */
9
10 #ifndef _REGULATOR_HAPTIC_H
11 #define _REGULATOR_HAPTIC_H
12
13 /*
14  * struct regulator_haptic_data - Platform device data
15  *
16  * @max_volt: maximum voltage value supplied to the haptic motor.
17  *              <The unit of the voltage is a micro>
18  * @min_volt: minimum voltage value supplied to the haptic motor.
19  *              <The unit of the voltage is a micro>
20  */
21 struct regulator_haptic_data {
22         unsigned int max_volt;
23         unsigned int min_volt;
24 };
25
26 #endif /* _REGULATOR_HAPTIC_H */
This page took 0.033583 seconds and 4 git commands to generate.