diff options
author | Marek Belisko <marek.belisko@open-nandra.com> | 2010-12-06 07:49:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-12-20 20:53:04 -0500 |
commit | 16c8a3b0c193dca0826dde77423ec4f7a81ed9f6 (patch) | |
tree | cd97ba991924b7016b8c2e3f9416855d4a7cf8b2 /arch/arm/mach-omap1 | |
parent | 374b8cfd61f33b3c1dd4b0f4c2b1bb20079d3090 (diff) |
omap1: htc_herald: Fix compilation warning
Patch fix following compilation warning:
arch/arm/mach-omap1/board-htcherald.c:442:
warning: large integer implicitly truncated to unsigned type
Hopefully this is just a typo.
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/board-htcherald.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap1/board-htcherald.c b/arch/arm/mach-omap1/board-htcherald.c index faa344f734dc..742c6d107268 100644 --- a/arch/arm/mach-omap1/board-htcherald.c +++ b/arch/arm/mach-omap1/board-htcherald.c | |||
@@ -439,7 +439,7 @@ static const struct ads7846_platform_data htcherald_ts_platform_data = { | |||
439 | .keep_vref_on = 1, | 439 | .keep_vref_on = 1, |
440 | .x_plate_ohms = 496, | 440 | .x_plate_ohms = 496, |
441 | .gpio_pendown = HTCHERALD_GPIO_TS, | 441 | .gpio_pendown = HTCHERALD_GPIO_TS, |
442 | .pressure_max = 100000, | 442 | .pressure_max = 10000, |
443 | .pressure_min = 5000, | 443 | .pressure_min = 5000, |
444 | .x_min = 528, | 444 | .x_min = 528, |
445 | .x_max = 3760, | 445 | .x_max = 3760, |