linux/audit.h: move ptrace.h include to kernel header
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / mfd / arizona.h
blob9798ae5da67be2b72f2d52101266c825d0e47a19
1 /*
2 * wm5102.h -- WM5102 MFD internals
4 * Copyright 2012 Wolfson Microelectronics plc
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #ifndef _WM5102_H
14 #define _WM5102_H
16 #include <linux/regmap.h>
17 #include <linux/pm.h>
19 struct wm_arizona;
21 extern const struct regmap_config wm5102_i2c_regmap;
22 extern const struct regmap_config wm5102_spi_regmap;
24 extern const struct regmap_config wm5110_i2c_regmap;
25 extern const struct regmap_config wm5110_spi_regmap;
27 extern const struct dev_pm_ops arizona_pm_ops;
29 extern const struct regmap_irq_chip wm5102_aod;
30 extern const struct regmap_irq_chip wm5102_irq;
32 extern const struct regmap_irq_chip wm5110_aod;
33 extern const struct regmap_irq_chip wm5110_irq;
35 int arizona_dev_init(struct arizona *arizona);
36 int arizona_dev_exit(struct arizona *arizona);
37 int arizona_irq_init(struct arizona *arizona);
38 int arizona_irq_exit(struct arizona *arizona);
40 #endif