diff options
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/sa1100fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/sa1100fb.c b/drivers/video/sa1100fb.c index b644f0f1268c..f3f55eb61ca1 100644 --- a/drivers/video/sa1100fb.c +++ b/drivers/video/sa1100fb.c | |||
@@ -798,7 +798,7 @@ static void sa1100fb_enable_controller(struct sa1100fb_info *fbi) | |||
798 | 798 | ||
799 | if (machine_is_shannon()) { | 799 | if (machine_is_shannon()) { |
800 | GPDR |= SHANNON_GPIO_DISP_EN; | 800 | GPDR |= SHANNON_GPIO_DISP_EN; |
801 | GPSR |= SHANNON_GPIO_DISP_EN; | 801 | GPSR = SHANNON_GPIO_DISP_EN; |
802 | } | 802 | } |
803 | 803 | ||
804 | dev_dbg(fbi->dev, "DBAR1 = 0x%08lx\n", DBAR1); | 804 | dev_dbg(fbi->dev, "DBAR1 = 0x%08lx\n", DBAR1); |
@@ -816,7 +816,7 @@ static void sa1100fb_disable_controller(struct sa1100fb_info *fbi) | |||
816 | dev_dbg(fbi->dev, "Disabling LCD controller\n"); | 816 | dev_dbg(fbi->dev, "Disabling LCD controller\n"); |
817 | 817 | ||
818 | if (machine_is_shannon()) { | 818 | if (machine_is_shannon()) { |
819 | GPCR |= SHANNON_GPIO_DISP_EN; | 819 | GPCR = SHANNON_GPIO_DISP_EN; |
820 | } | 820 | } |
821 | 821 | ||
822 | set_current_state(TASK_UNINTERRUPTIBLE); | 822 | set_current_state(TASK_UNINTERRUPTIBLE); |