mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 22:38:04 +00:00
07e8c30da9
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From fe51c97f26f8d6798909b1f22a5fb4ca84684f36 Mon Sep 17 00:00:00 2001
|
|
From: Steve Sakoman <steve@sakoman.com>
|
|
Date: Thu, 17 Dec 2009 14:32:36 -0800
|
|
Subject: [PATCH 20/28] ARM: OMAP: Add twl4030 madc support to Beagle
|
|
|
|
---
|
|
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 f699701..9259780 100644
|
|
--- a/arch/arm/mach-omap2/board-omap3beagle.c
|
|
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
|
|
@@ -604,6 +604,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,
|
|
@@ -612,6 +616,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
|
|
|