summaryrefslogtreecommitdiff
path: root/drivers/staging/sm750fb/ddk750_chip.c
diff options
context:
space:
mode:
authorMike Rapoport <mike.rapoport@gmail.com>2016-02-10 19:34:00 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-12 06:52:37 +0300
commitd97981431f63ca2da4e8b9dcedc2cd3576286c0a (patch)
treeb4c64dc04b4f3d0ac673a3731c3ae694cb499b8c /drivers/staging/sm750fb/ddk750_chip.c
parentcf25a7043654184b53d9ed345e718677ee880d92 (diff)
downloadlinux-d97981431f63ca2da4e8b9dcedc2cd3576286c0a.tar.xz
staging: sm750fb: use BIT macro for VGA_CONFIGURATION single-bit fields
Replace complex defintion of VGA_CONFIGURATION register fields with BIT() macro and use open-coded implementation for VGA_CONFIGURATION manipulations. Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb/ddk750_chip.c')
-rw-r--r--drivers/staging/sm750fb/ddk750_chip.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index d813cc6f1c6b..2d1128fc7b5a 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -211,8 +211,7 @@ int ddk750_initHw(initchip_param_t *pInitParam)
if (getChipType() != SM750LE) {
/* set panel pll and graphic mode via mmio_88 */
reg = PEEK32(VGA_CONFIGURATION);
- reg = FIELD_SET(reg, VGA_CONFIGURATION, PLL, PANEL);
- reg = FIELD_SET(reg, VGA_CONFIGURATION, MODE, GRAPHIC);
+ reg |= (VGA_CONFIGURATION_PLL | VGA_CONFIGURATION_MODE);
POKE32(VGA_CONFIGURATION, reg);
} else {
#if defined(__i386__) || defined(__x86_64__)