diff options
author | Gyungoh Yoo <jack.yoo@skyworksinc.com> | 2015-02-27 01:42:21 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-03-12 05:08:12 -0400 |
commit | 2698dc22292e3e5fc2b24b2748018dcc09d70989 (patch) | |
tree | 10dcdb06579ab9461144d90c87aaefa492fb413a /include/linux/mfd | |
parent | ccd173c541e7d3c864730e334dac36a8b6487a25 (diff) |
mfd: Add support for Skyworks SKY81452 driver
Signed-off-by: Gyungoh Yoo <jack.yoo@skyworksinc.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/mfd')
-rw-r--r-- | include/linux/mfd/sky81452.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/linux/mfd/sky81452.h b/include/linux/mfd/sky81452.h new file mode 100644 index 000000000000..b0925fa3e9ef --- /dev/null +++ b/include/linux/mfd/sky81452.h | |||
@@ -0,0 +1,31 @@ | |||
1 | /* | ||
2 | * sky81452.h SKY81452 MFD driver | ||
3 | * | ||
4 | * Copyright 2014 Skyworks Solutions Inc. | ||
5 | * Author : Gyungoh Yoo <jack.yoo@skyworksinc.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License version 2 | ||
9 | * as published by the Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but | ||
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License along | ||
17 | * with this program; if not, see <http://www.gnu.org/licenses/>. | ||
18 | */ | ||
19 | |||
20 | #ifndef _SKY81452_H | ||
21 | #define _SKY81452_H | ||
22 | |||
23 | #include <linux/platform_data/sky81452-backlight.h> | ||
24 | #include <linux/regulator/machine.h> | ||
25 | |||
26 | struct sky81452_platform_data { | ||
27 | struct sky81452_bl_platform_data *bl_pdata; | ||
28 | struct regulator_init_data *regulator_init_data; | ||
29 | }; | ||
30 | |||
31 | #endif | ||