From: Jonathan Cameron <jic23@xxxxxxxxx> Do not commit. --- arch/arm/mach-pxa/stargate2.c | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-pxa/stargate2.c b/arch/arm/mach-pxa/stargate2.c index b0656e15..ce7f0a3 100644 --- a/arch/arm/mach-pxa/stargate2.c +++ b/arch/arm/mach-pxa/stargate2.c @@ -54,6 +54,8 @@ #include <linux/mfd/da903x.h> #include <linux/sht15.h> +#include "../../../drivers/staging/iio/machine.h" + #include "devices.h" #include "generic.h" @@ -406,6 +408,25 @@ static struct i2c_pxa_platform_data i2c_pdata = { .fast_mode = 1, }; +static struct iio_map max1363_consumer_map[] = { + { + .adc_channel_label = "AIN1", + .consumer_dev_name = "iio_hwmon.0", + .consumer_channel = "testchan1", + }, { + .adc_channel_label = "AIN2", + .consumer_dev_name = "iio_hwmon.0", + .consumer_channel = "testchan2", + }, + {} +}; + +static struct platform_device iio_hwmon_test = { + .name = "iio_hwmon", +}; + + + static void __init imote2_stargate2_init(void) { @@ -561,6 +582,7 @@ static struct i2c_board_info __initdata imote2_i2c_board_info[] = { * pull up resistors are missing. */ .irq = PXA_GPIO_TO_IRQ(99), + .platform_data = max1363_consumer_map, }, { /* ITS400 Sensor board only */ .type = "tsl2561", .addr = 0x49, @@ -945,6 +967,7 @@ static struct i2c_board_info __initdata stargate2_i2c_board_info[] = { * pull up resistors are missing. */ .irq = PXA_GPIO_TO_IRQ(99), + .platform_data = max1363_consumer_map, }, { /* ITS400 Sensor board only */ .type = "tsl2561", .addr = 0x49, @@ -977,6 +1000,7 @@ static struct platform_device *stargate2_devices[] = { &stargate2_sram, &smc91x_device, &sht15, + &iio_hwmon_test, }; static void __init stargate2_init(void) -- 1.7.8.4 -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html