* [PATCH] ps3fb: Fix compile warning
@ 2013-05-15 3:12 Geoff Levand
0 siblings, 0 replies; only message in thread
From: Geoff Levand @ 2013-05-15 3:12 UTC (permalink / raw)
To: linux-fbdev
Fix the following compile warning when -Wparentheses is set:
drivers/video/ps3fb.c: warning: suggest parentheses around ‘+’ inside ‘<<’
Signed-off-by: Geoff Levand <geoff@infradead.org>
---
Hi Florian,
Please apply.
-Geoff
drivers/video/ps3fb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/ps3fb.c b/drivers/video/ps3fb.c
index d9f08c6..a397271d 100644
--- a/drivers/video/ps3fb.c
+++ b/drivers/video/ps3fb.c
@@ -710,7 +710,7 @@ static int ps3fb_mmap(struct fb_info *info, struct vm_area_struct *vma)
r = vm_iomap_memory(vma, info->fix.smem_start, info->fix.smem_len);
dev_dbg(info->device, "ps3fb: mmap framebuffer P(%lx)->V(%lx)\n",
- info->fix.smem_start + vma->vm_pgoff << PAGE_SHIFT,
+ (info->fix.smem_start + vma->vm_pgoff) << PAGE_SHIFT,
vma->vm_start);
return r;
--
1.8.1.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-05-15 3:12 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-15 3:12 [PATCH] ps3fb: Fix compile warning Geoff Levand
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.