Commit 80256280 authored by Andres Salomon's avatar Andres Salomon Committed by Greg Kroah-Hartman

staging/olpc_dcon: drop useaa module arg

The 'useaa' module parameter was a workaround for a buggy DCON prototype
not supporting the optional anti-aliasing mode properly.  There's no
reason to disable it any more, so drop the option.
Signed-off-by: default avatarAndres Salomon <dilinger@queued.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9e412a0a
...@@ -39,10 +39,6 @@ ...@@ -39,10 +39,6 @@
static ushort resumeline = 898; static ushort resumeline = 898;
module_param(resumeline, ushort, 0444); module_param(resumeline, ushort, 0444);
/* Default off since it doesn't work on DCON ASIC in B-test OLPC board */
static int useaa = 1;
module_param(useaa, int, 0444);
static struct dcon_platform_data *pdata; static struct dcon_platform_data *pdata;
/* I2C structures */ /* I2C structures */
...@@ -103,9 +99,7 @@ static int dcon_hw_init(struct dcon_priv *dcon, int is_init) ...@@ -103,9 +99,7 @@ static int dcon_hw_init(struct dcon_priv *dcon, int is_init)
/* Colour swizzle, AA, no passthrough, backlight */ /* Colour swizzle, AA, no passthrough, backlight */
if (is_init) { if (is_init) {
dcon->disp_mode = MODE_PASSTHRU | MODE_BL_ENABLE | dcon->disp_mode = MODE_PASSTHRU | MODE_BL_ENABLE |
MODE_CSWIZZLE; MODE_CSWIZZLE | MODE_COL_AA;
if (useaa)
dcon->disp_mode |= MODE_COL_AA;
} }
dcon_write(dcon, DCON_REG_MODE, dcon->disp_mode); dcon_write(dcon, DCON_REG_MODE, dcon->disp_mode);
...@@ -191,9 +185,7 @@ static int dcon_set_mono_mode(struct dcon_priv *dcon, bool enable_mono) ...@@ -191,9 +185,7 @@ static int dcon_set_mono_mode(struct dcon_priv *dcon, bool enable_mono)
dcon->disp_mode |= MODE_MONO_LUMA; dcon->disp_mode |= MODE_MONO_LUMA;
} else { } else {
dcon->disp_mode &= ~(MODE_MONO_LUMA); dcon->disp_mode &= ~(MODE_MONO_LUMA);
dcon->disp_mode |= MODE_CSWIZZLE; dcon->disp_mode |= MODE_CSWIZZLE | MODE_COL_AA;
if (useaa)
dcon->disp_mode |= MODE_COL_AA;
} }
dcon_write(dcon, DCON_REG_MODE, dcon->disp_mode); dcon_write(dcon, DCON_REG_MODE, dcon->disp_mode);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment