diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-16 18:34:41 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-16 22:48:01 -0400 |
commit | 9990bfd0e5d4aae9c33693aef8b0a36577c63677 (patch) | |
tree | 35d1b3aa50ac35667ee7ba2ef5653c2cc0733663 /drivers/video/bfin-t350mcqb-fb.c | |
parent | 00115e6690ed5aa90530e1e41c467cd895dd18fc (diff) |
fbdev: bfin-t350mcqb-fb: drop unused local variables
The local fbinfo/info vars in the suspend functions don't actually get
used which cause ugly gcc warnings, so drop them.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: Krzysztof Helt <krzysztof.h1@poczta.fm>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/bfin-t350mcqb-fb.c')
-rw-r--r-- | drivers/video/bfin-t350mcqb-fb.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/video/bfin-t350mcqb-fb.c b/drivers/video/bfin-t350mcqb-fb.c index 90cfddabf1f7..2a2e116b7fb1 100644 --- a/drivers/video/bfin-t350mcqb-fb.c +++ b/drivers/video/bfin-t350mcqb-fb.c | |||
@@ -637,9 +637,6 @@ static int bfin_t350mcqb_remove(struct platform_device *pdev) | |||
637 | #ifdef CONFIG_PM | 637 | #ifdef CONFIG_PM |
638 | static int bfin_t350mcqb_suspend(struct platform_device *pdev, pm_message_t state) | 638 | static int bfin_t350mcqb_suspend(struct platform_device *pdev, pm_message_t state) |
639 | { | 639 | { |
640 | struct fb_info *fbinfo = platform_get_drvdata(pdev); | ||
641 | struct bfin_t350mcqbfb_info *info = fbinfo->par; | ||
642 | |||
643 | bfin_t350mcqb_disable_ppi(); | 640 | bfin_t350mcqb_disable_ppi(); |
644 | disable_dma(CH_PPI); | 641 | disable_dma(CH_PPI); |
645 | bfin_write_PPI_STATUS(0xFFFF); | 642 | bfin_write_PPI_STATUS(0xFFFF); |
@@ -649,9 +646,6 @@ static int bfin_t350mcqb_suspend(struct platform_device *pdev, pm_message_t stat | |||
649 | 646 | ||
650 | static int bfin_t350mcqb_resume(struct platform_device *pdev) | 647 | static int bfin_t350mcqb_resume(struct platform_device *pdev) |
651 | { | 648 | { |
652 | struct fb_info *fbinfo = platform_get_drvdata(pdev); | ||
653 | struct bfin_t350mcqbfb_info *info = fbinfo->par; | ||
654 | |||
655 | enable_dma(CH_PPI); | 649 | enable_dma(CH_PPI); |
656 | bfin_t350mcqb_enable_ppi(); | 650 | bfin_t350mcqb_enable_ppi(); |
657 | 651 | ||