accel/qaic: Add AIC200 support
[drm/drm-misc.git] / include / linux / platform_data / regulator-haptic.h
blob4213e1b0131693d9369f1c02d81074e94a315cba
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Regulator Haptic Platform Data
5 * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 * Author: Jaewon Kim <jaewon02.kim@samsung.com>
7 * Author: Hyunhee Kim <hyunhee.kim@samsung.com>
8 */
10 #ifndef _REGULATOR_HAPTIC_H
11 #define _REGULATOR_HAPTIC_H
14 * struct regulator_haptic_data - Platform device data
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>
21 struct regulator_haptic_data {
22 unsigned int max_volt;
23 unsigned int min_volt;
26 #endif /* _REGULATOR_HAPTIC_H */