diff options
author | Stefan Pledl <stefan.pledl@mesutronic.de> | 2009-07-29 04:09:45 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-09-16 22:10:12 -0400 |
commit | 0e101ec12e68f25dd769a4b7ecb5e7ead0aae7c0 (patch) | |
tree | 49d5c451f375bcf8768601acacc3535c44fc884d /arch/blackfin | |
parent | b3dec4a4ff495248170358cb3b8254a814e5b096 (diff) |
Blackfin: bf548-ezkit: fix incorrect LCD size parameters
I think we have to use the physical dimensions [mm] of the display for
.width and .heigth in struct bfin_bf54xfb_mach_info bf54x_lq043_data which
are copied to fbinfo->var.height/.width in bf54x-lq043fb.c.
linux/fb.h describes this values as 'height/weight of picture in mm'
Otherwise QT calcs the wrong dpi value and the displayed fonts are very
small.
Signed-off-by: Stefan Pledl <stefan.pledl@mesutronic.de>
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-bf548/boards/ezkit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index aa82836ebc73..3c06010475a3 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c | |||
@@ -99,8 +99,8 @@ static struct platform_device bfin_isp1760_device = { | |||
99 | #include <mach/bf54x-lq043.h> | 99 | #include <mach/bf54x-lq043.h> |
100 | 100 | ||
101 | static struct bfin_bf54xfb_mach_info bf54x_lq043_data = { | 101 | static struct bfin_bf54xfb_mach_info bf54x_lq043_data = { |
102 | .width = 480, | 102 | .width = 95, |
103 | .height = 272, | 103 | .height = 54, |
104 | .xres = {480, 480, 480}, | 104 | .xres = {480, 480, 480}, |
105 | .yres = {272, 272, 272}, | 105 | .yres = {272, 272, 272}, |
106 | .bpp = {24, 24, 24}, | 106 | .bpp = {24, 24, 24}, |