diff options
| author | mattis fjallstrom <mattis@acm.org> | 2015-04-06 19:46:40 -0700 |
|---|---|---|
| committer | mattis fjallstrom <mattis@acm.org> | 2015-04-06 19:46:40 -0700 |
| commit | 81c88f206e0986911911f6cdd84bce03e26dc336 (patch) | |
| tree | 3b590d089f6f467a8e20a5c83eb115d28d7f0db7 | |
| parent | 6386bda2371f64826dfd17eedae2b824fc0b8d95 (diff) | |
| download | olio-linux-3.10-81c88f206e0986911911f6cdd84bce03e26dc336.tar.xz olio-linux-3.10-81c88f206e0986911911f6cdd84bce03e26dc336.zip | |
Correct orientation matrix for the mpu
Change-Id: I7feda1f86cd99dca4af9360bbf34f87c0706e791
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3h1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/board-omap3h1.c b/arch/arm/mach-omap2/board-omap3h1.c index 9d0ab442fea..b3e002c4048 100644 --- a/arch/arm/mach-omap2/board-omap3h1.c +++ b/arch/arm/mach-omap2/board-omap3h1.c @@ -178,9 +178,9 @@ static int __init omap3h1_spi_init(void) { static struct mpu_platform_data mpu_data = { .int_config = 0x00, .level_shifter = 1, - .orientation = { 0, 1, 0, - 1, 0, 0, - 0, 0, 1 }, + .orientation = { 0, -1, 0, + -1, 0, 0, + 0, 0, 1 }, }; static struct lm3530_platform_data omap3h1_backlight_platform_data = { |