aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r--arch/arm/mach-at91/at91sam9260_devices.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/mach-at91/at91sam9260_devices.c b/arch/arm/mach-at91/at91sam9260_devices.c
index 14a6e35801ff..adcfb88a5d7d 100644
--- a/arch/arm/mach-at91/at91sam9260_devices.c
+++ b/arch/arm/mach-at91/at91sam9260_devices.c
@@ -1307,19 +1307,19 @@ static struct platform_device at91_adc_device = {
1307static struct at91_adc_trigger at91_adc_triggers[] = { 1307static struct at91_adc_trigger at91_adc_triggers[] = {
1308 [0] = { 1308 [0] = {
1309 .name = "timer-counter-0", 1309 .name = "timer-counter-0",
1310 .value = AT91_ADC_TRGSEL_TC0 | AT91_ADC_TRGEN, 1310 .value = 0x1,
1311 }, 1311 },
1312 [1] = { 1312 [1] = {
1313 .name = "timer-counter-1", 1313 .name = "timer-counter-1",
1314 .value = AT91_ADC_TRGSEL_TC1 | AT91_ADC_TRGEN, 1314 .value = 0x3,
1315 }, 1315 },
1316 [2] = { 1316 [2] = {
1317 .name = "timer-counter-2", 1317 .name = "timer-counter-2",
1318 .value = AT91_ADC_TRGSEL_TC2 | AT91_ADC_TRGEN, 1318 .value = 0x5,
1319 }, 1319 },
1320 [3] = { 1320 [3] = {
1321 .name = "external", 1321 .name = "external",
1322 .value = AT91_ADC_TRGSEL_EXTERNAL | AT91_ADC_TRGEN, 1322 .value = 0xd,
1323 .is_external = true, 1323 .is_external = true,
1324 }, 1324 },
1325}; 1325};