diff options
author | Tony Lindgren <tony@atomide.com> | 2010-01-08 10:29:06 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-01-08 10:29:06 -0800 |
commit | 66215949e6512f61c2c92b65ea79f8566e9e650a (patch) | |
tree | 8efbddd63e7225731391cf7c67786a0e133b2c46 /arch/arm/plat-omap | |
parent | c5c4dce45d7538ada6e9aac4cdb2909bc1cb28f6 (diff) | |
download | linux-3.10-66215949e6512f61c2c92b65ea79f8566e9e650a.tar.gz linux-3.10-66215949e6512f61c2c92b65ea79f8566e9e650a.tar.bz2 linux-3.10-66215949e6512f61c2c92b65ea79f8566e9e650a.zip |
omap1: Fix compile for omap1_bl.c
Commit 9905a43b made struct backlight_ops const. Omap was
setting check_fb dynamically, which caused the following
compile error:
drivers/video/backlight/omap1_bl.c: In function 'omapbl_probe':
drivers/video/backlight/omap1_bl.c:142: error: assignment of read-only variable 'omapbl_ops'
Turns out pdata->check_fb is not being used, so just remove
it to fix the compile.
Cc: Emese Revfy <re.emese@gmail.com>
Cc: Richard Purdie <rpurdie@linux.intel.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/plat-omap')
-rw-r--r-- | arch/arm/plat-omap/include/plat/board.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/plat-omap/include/plat/board.h b/arch/arm/plat-omap/include/plat/board.h index 376ce18216f..5cd622039da 100644 --- a/arch/arm/plat-omap/include/plat/board.h +++ b/arch/arm/plat-omap/include/plat/board.h @@ -99,7 +99,6 @@ struct fb_info; struct omap_backlight_config { int default_intensity; int (*set_power)(struct device *dev, int state); - int (*check_fb)(struct fb_info *fb); }; struct omap_fbmem_config { |