mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
e5352b3d71
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
From 91e701f3287923d11dd295b6a62186909e362503 Mon Sep 17 00:00:00 2001
|
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
|
Date: Sat, 21 May 2011 16:18:30 +0200
|
|
Subject: [PATCH 3/7] OMAP3: beagle: add MADC support
|
|
|
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
|
---
|
|
arch/arm/mach-omap2/board-omap3beagle.c | 5 +++++
|
|
1 files changed, 5 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
|
|
index db285e1..da4ba50 100644
|
|
--- a/arch/arm/mach-omap2/board-omap3beagle.c
|
|
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
|
|
@@ -634,6 +634,10 @@ static struct twl4030_codec_data beagle_codec_data = {
|
|
.audio = &beagle_audio_data,
|
|
};
|
|
|
|
+static struct twl4030_madc_platform_data beagle_madc_data = {
|
|
+ .irq_line = 1,
|
|
+};
|
|
+
|
|
static struct twl4030_platform_data beagle_twldata = {
|
|
.irq_base = TWL4030_IRQ_BASE,
|
|
.irq_end = TWL4030_IRQ_END,
|
|
@@ -642,6 +646,7 @@ static struct twl4030_platform_data beagle_twldata = {
|
|
.usb = &beagle_usb_data,
|
|
.gpio = &beagle_gpio_data,
|
|
.codec = &beagle_codec_data,
|
|
+ .madc = &beagle_madc_data,
|
|
.vmmc1 = &beagle_vmmc1,
|
|
.vsim = &beagle_vsim,
|
|
.vdac = &beagle_vdac,
|
|
--
|
|
1.6.6.1
|
|
|