From: "Antonino A. Daplas" <adaplas@gmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Gerd Hoffmann <kraxel@suse.de>,
Linux Fbdev development list
<linux-fbdev-devel@lists.sourceforge.net>,
Andi Kleen <ak@suse.de>, Krzysztof Halasa <khc@pm.waw.pl>
Subject: Re: [PATCH] skeletonfb: Various corrections
Date: Tue, 10 Apr 2007 06:57:15 +0800 [thread overview]
Message-ID: <1176159435.16120.6.camel@daplas> (raw)
In-Reply-To: <20070409130005.0581867d.akpm@linux-foundation.org>
On Mon, 2007-04-09 at 13:00 -0700, Andrew Morton wrote:
> On Mon, 09 Apr 2007 20:05:01 +0800
> "Antonino A. Daplas" <adaplas@gmail.com> wrote:
>
Note that skeletonfb doesn't even compile, but I'll do the corrections
myself.
> > From: Krzysztof Helt <krzysztof.h1@wp.pl>
> >
> > This is mainly correction of types, typos and missing characters
> > in the skeletonfb.c file found while trying to prepare a new fb
> > driver.
> >
> > Signed-off-by: Krzysztof Helt <krzysztof.h1@wp.pl>
> > Signed-off-by: Antonino Daplas <adaplas@gmail.com>
> > ---
> >
> > drivers/video/skeletonfb.c | 118 ++++++++++++++++++++++++++------------------
> > 1 files changed, 71 insertions(+), 47 deletions(-)
> >
> > diff --git a/drivers/video/skeletonfb.c b/drivers/video/skeletonfb.c
> > index bb96cb6..30eb964 100644
> > --- a/drivers/video/skeletonfb.c
> > +++ b/drivers/video/skeletonfb.c
> > @@ -51,6 +51,9 @@ #include <linux/slab.h>
> > #include <linux/delay.h>
> > #include <linux/fb.h>
> > #include <linux/init.h>
> > +#ifdef CONFIG_PCI
> > +#include <linux/pci.h>
> > +#endif
>
> pci.h shouldn't need these include guards?
>
> > /*
> > * This is just simple sample code.
> > @@ -60,6 +63,11 @@ #include <linux/init.h>
> > */
> >
> > /*
> > + * Driver data
> > + */
> > +static char *mode_option __devinitdata = NULL;
>
> The initialisation to NULL is unneeded and undesirable (it increases
> vmlinux size).
>
> >
> > -#if CONFIG_PCI
> > +#ifdef CONFIG_PCI
> > +static struct pci_device_id xxxfb_id_table[] = {
> > + { PCI_VENDOR_ID_XXX, PCI_DEVICE_ID_XXX,
> > + PCI_ANY_ID, PCI_ANY_ID, PCI_BASE_CLASS_DISPLAY << 16,
> > + ADDR, 0 },
> > + { 0, }
> > +};
> > +
> > /* For PCI drivers */
> > static struct pci_driver xxxfb_driver = {
> > .name = "xxxfb",
> > - .id_table = xxxfb_devices,
> > + .id_table = xxxfb_id_table,
> > .probe = xxxfb_probe,
> > .remove = __devexit_p(xxxfb_remove),
> > .suspend = xxxfb_suspend, /* optional */
> > .resume = xxxfb_resume, /* optional */
> > };
>
> I think this example still need to handle the CONFIG_PM=n case?
>
> Something like
>
> #ifdef CONFIG_PM
> void xxxfb_suspend(args)
> {
> ...
> }
> #else
> #define xxxfb_suspend NULL
> #define xxxfb_resume NULL
> #endif
>
>
> > -static int __init xxxfb_init(void)
> > +int __init xxxfb_init(void)
> > {
> > /*
> > * For kernel boot options (in 'video=xxxfb:<options>' format)
> > @@ -854,10 +898,12 @@ #endif
> > return pci_register_driver(&xxxfb_driver);
> > }
> >
> > +#ifdef MODULE
> > static void __exit xxxfb_exit(void)
> > {
> > pci_unregister_driver(&xxxfb_driver);
> > }
> > +#endif
> > #else
> > #include <linux/platform_device.h>
> > /* for platform devices */
> > @@ -898,13 +944,16 @@ #endif
> > return ret;
> > }
> >
> > +#ifdef MODULE
> > static void __exit xxxfb_exit(void)
> > {
> > platform_device_unregister(&xxxfb_device);
> > driver_unregister(&xxxfb_driver);
> > }
> > #endif
> > +#endif
> >
>
> Are these ifdefs around the __exit functions really recommended fbdev
> practice? I hope not.
There is no recommendation, but it has been done like this since the
early days, I don't know the exact reason, but probably to minimize code
size?
Tony
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
next prev parent reply other threads:[~2007-04-09 22:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-09 12:05 [PATCH] skeletonfb: Various corrections Antonino A. Daplas
2007-04-09 20:00 ` Andrew Morton
2007-04-09 22:57 ` Antonino A. Daplas [this message]
2007-04-09 23:25 ` [PATCH] [RESEND] " Antonino A. Daplas
2007-04-10 12:37 ` Krzysztof Halasa
2007-04-10 13:25 ` Antonino A. Daplas
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=1176159435.16120.6.camel@daplas \
--to=adaplas@gmail.com \
--cc=ak@suse.de \
--cc=akpm@linux-foundation.org \
--cc=khc@pm.waw.pl \
--cc=kraxel@suse.de \
--cc=linux-fbdev-devel@lists.sourceforge.net \
/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 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.