Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 294329
b: refs/heads/master
c: 8027756
h: refs/heads/master
i:
  294327: bd82097
v: v3
  • Loading branch information
Tomi Valkeinen committed Feb 23, 2012
1 parent cdcb78e commit 5eed9ab
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 50 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1e434f9318efc3dddc0c0b8d2071712668154c2b
refs/heads/master: 80277566d0d85b3430548ba87ad28b0585ef06a6
5 changes: 0 additions & 5 deletions trunk/drivers/video/omap/omapfb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -157,11 +157,6 @@ static int ctrl_init(struct omapfb_device *fbdev)
fbdev->mem_desc.region[i].size =
PAGE_ALIGN(def_vram[i]);
fbdev->mem_desc.region_cnt = i;
} else {
struct omapfb_platform_data *conf;

conf = fbdev->dev->platform_data;
fbdev->mem_desc = conf->mem_desc;
}

if (!fbdev->mem_desc.region_cnt) {
Expand Down
43 changes: 0 additions & 43 deletions trunk/drivers/video/omap2/omapfb/omapfb-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1614,23 +1614,6 @@ static int omapfb_allocate_all_fbs(struct omapfb2_device *fbdev)
memset(&vram_paddrs, 0, sizeof(vram_paddrs));
}

if (fbdev->dev->platform_data) {
struct omapfb_platform_data *opd;
opd = fbdev->dev->platform_data;
for (i = 0; i < opd->mem_desc.region_cnt; ++i) {
if (!vram_sizes[i]) {
unsigned long size;
unsigned long paddr;

size = opd->mem_desc.region[i].size;
paddr = opd->mem_desc.region[i].paddr;

vram_sizes[i] = size;
vram_paddrs[i] = paddr;
}
}
}

for (i = 0; i < fbdev->num_fbs; i++) {
/* allocate memory automatically only for fb0, or if
* excplicitly defined with vram or plat data option */
Expand Down Expand Up @@ -1828,32 +1811,6 @@ static int omapfb_fb_init(struct omapfb2_device *fbdev, struct fb_info *fbi)

var->rotate = def_rotate;

/*
* Check if there is a default color format set in the board file,
* and use this format instead the default deducted from the
* display bpp.
*/
if (fbdev->dev->platform_data) {
struct omapfb_platform_data *opd;
int id = ofbi->id;

opd = fbdev->dev->platform_data;
if (opd->mem_desc.region[id].format_used) {
enum omap_color_mode mode;
enum omapfb_color_format format;

format = opd->mem_desc.region[id].format;
mode = fb_format_to_dss_mode(format);
if (mode < 0) {
r = mode;
goto err;
}
r = dss_mode_to_fb_mode(mode, var);
if (r < 0)
goto err;
}
}

if (display) {
u16 w, h;
int rotation = (var->rotate + ofbi->rotation[0]) % 4;
Expand Down
1 change: 0 additions & 1 deletion trunk/include/linux/omapfb.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ struct omapfb_mem_desc {

struct omapfb_platform_data {
struct omap_lcd_config lcd;
struct omapfb_mem_desc mem_desc;
};

/* in arch/arm/plat-omap/fb.c */
Expand Down

0 comments on commit 5eed9ab

Please sign in to comment.