From: Art Haas <ahaas@airmail.net>
To: linux-kernel@vger.kernel.org
Cc: Linus Torvalds <torvalds@transmeta.com>
Subject: [PATCH] C99 initializer fix for drivers/video/vfb.c
Date: Wed, 4 Dec 2002 14:24:08 -0600 [thread overview]
Message-ID: <20021204202408.GF9551@debian> (raw)
Hi.
This patch fixes a half-conversion to C99 initializers - the '='
characters were dropped. The patch is against 2.5.50.
Art Haas
--- linux-2.5.50/drivers/video/vfb.c.old 2002-12-04 13:25:50.000000000 -0600
+++ linux-2.5.50/drivers/video/vfb.c 2002-12-04 13:25:00.000000000 -0600
@@ -96,17 +96,17 @@
struct vm_area_struct *vma);
static struct fb_ops vfb_ops = {
- .fb_set_var gen_set_var,
- .fb_get_cmap gen_set_cmap,
- .fb_set_cmap gen_set_cmap,
- .fb_check_var vfb_check_var,
- .fb_set_par vfb_set_par,
- .fb_setcolreg vfb_setcolreg,
- .fb_pan_display vfb_pan_display,
- .fb_fillrect cfb_fillrect,
- .fb_copyarea cfb_copyarea,
- .fb_imageblit cfb_imageblit,
- .fb_mmap vfb_mmap,
+ .fb_set_var = gen_set_var,
+ .fb_get_cmap = gen_set_cmap,
+ .fb_set_cmap = gen_set_cmap,
+ .fb_check_var = vfb_check_var,
+ .fb_set_par = vfb_set_par,
+ .fb_setcolreg = vfb_setcolreg,
+ .fb_pan_display = vfb_pan_display,
+ .fb_fillrect = cfb_fillrect,
+ .fb_copyarea = cfb_copyarea,
+ .fb_imageblit = cfb_imageblit,
+ .fb_mmap = vfb_mmap,
};
/*
--
They that can give up essential liberty to obtain a little temporary safety
deserve neither liberty nor safety.
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759
next reply other threads:[~2002-12-04 20:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-12-04 20:24 Art Haas [this message]
2002-12-04 23:11 ` [PATCH] C99 initializer fix for drivers/video/vfb.c James Simmons
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20021204202408.GF9551@debian \
--to=ahaas@airmail.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox