[PATCH] Typo fixes in drivers/video/68328fb.c

Maciej Soltysiak (solt@dns.toxicfilms.tv)
Sat, 5 Apr 2003 15:50:52 +0200 (CEST)


Hi,

while looking for code to convert to C99 i found that there are typos
in drivers/video/68328fb.c that will cause errors on compilation.

Regards,
Maciej Soltysiak

diff -Nru linux-2.5.64.orig/drivers/video/68328fb.c linux-2.5.64/drivers/video/68328fb.c
--- linux-2.5.64.orig/drivers/video/68328fb.c 2003-03-05 04:29:31.000000000 +0100
+++ linux-2.5.64/drivers/video/68328fb.c 2003-04-05 15:40:11.000000000 +0200
@@ -401,12 +401,12 @@
((1<<(width))-1)) : 0))

static struct fb_ops mc68328_fb_ops = {
- .owner: THIS_MODULE,
- .fb_setcolreg: mc68328fb_setcolreg,
- .fb_fillrect: cfbfillrect,
- .fb_copyarea: cfbcopyarea,
- .fb_imageblit: cfbimgblt,
- .fb_cursor: softcursor,
+ .owner = THIS_MODULE,
+ .fb_setcolreg = mc68328fb_setcolreg,
+ .fb_fillrect = cfbfillrect,
+ .fb_copyarea = cfbcopyarea,
+ .fb_imageblit = cfbimgblt,
+ .fb_cursor = softcursor,
};
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/