mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
9bc77dff5f
Regenerate all beaglebone patches and add one vfs tracer patch for powertop Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
48 lines
1.5 KiB
Diff
48 lines
1.5 KiB
Diff
From 33bbdc8dfb22170f7be9286c653fbac9d9c8f196 Mon Sep 17 00:00:00 2001
|
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
|
Date: Tue, 31 Jan 2012 14:50:55 +0100
|
|
Subject: [PATCH 13/79] beaglebone: fix ADC init
|
|
|
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
|
---
|
|
arch/arm/mach-omap2/board-am335xevm.c | 6 ++----
|
|
1 file changed, 2 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/arch/arm/mach-omap2/board-am335xevm.c b/arch/arm/mach-omap2/board-am335xevm.c
|
|
index 6b78ae6..ffbecae 100644
|
|
--- a/arch/arm/mach-omap2/board-am335xevm.c
|
|
+++ b/arch/arm/mach-omap2/board-am335xevm.c
|
|
@@ -242,11 +242,11 @@ struct da8xx_lcdc_platform_data dvi_pdata = {
|
|
static struct tsc_data am335x_touchscreen_data = {
|
|
.wires = 4,
|
|
.x_plate_resistance = 200,
|
|
-// .mode = TI_TSCADC_TSCMODE,
|
|
+ .mode = TI_TSCADC_TSCMODE,
|
|
};
|
|
|
|
static struct tsc_data bone_touchscreen_data = {
|
|
-// .mode = TI_TSCADC_GENMODE,
|
|
+ .mode = TI_TSCADC_GENMODE,
|
|
};
|
|
|
|
static u8 am335x_iis_serializer_direction1[] = {
|
|
@@ -2277,7 +2277,6 @@ static struct evm_dev_cfg beaglebone_old_dev_cfg[] = {
|
|
{i2c2_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
|
{mmc0_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
|
{boneleds_init, DEV_ON_BASEBOARD, PROFILE_ALL},
|
|
- {bone_tsc_init, DEV_ON_BASEBOARD, PROFILE_ALL},
|
|
{NULL, 0, 0},
|
|
};
|
|
|
|
@@ -2290,7 +2289,6 @@ static struct evm_dev_cfg beaglebone_dev_cfg[] = {
|
|
{i2c2_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
|
{mmc0_init, DEV_ON_BASEBOARD, PROFILE_NONE},
|
|
{boneleds_init, DEV_ON_BASEBOARD, PROFILE_ALL},
|
|
- {bone_tsc_init, DEV_ON_BASEBOARD, PROFILE_ALL},
|
|
{NULL, 0, 0},
|
|
};
|
|
|
|
--
|
|
1.7.10
|
|
|