Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1209575

Re: [PATCH] mtd: denali: Use module_pci_driver

From Vaishali Thakkar <vthakkar1994@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH] mtd: denali: Use module_pci_driver
Date 2015-08-19 04:40 +0200
Message-ID <pZ1sd-Of-1@gated-at.bofh.it> (permalink)
References <pJvui-2Am-17@gated-at.bofh.it> <pYZA5-6v9-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Wed, Aug 19, 2015 at 6:02 AM, Brian Norris
<computersforpeace@gmail.com> wrote:
>
> On Tue, Jul 07, 2015 at 12:53:45PM +0530, Vaishali Thakkar wrote:
> > Use module_pci_driver for drivers whose init and exit functions
> > only register and unregister, respectively.
> >
> > A simplified version of the Coccinelle semantic patch that performs
> > this transformation is as follows:
> >
> > @a@
> > identifier f, x;
> > @@
> > -static f(...) { return pci_register_driver(&x); }
> >
> > @b depends on a@
> > identifier e, a.x;
> > @@
> > -static e(...) { pci_unregister_driver(&x); }
> >
> > @c depends on a && b@
> > identifier a.f;
> > declarer name module_init;
> > @@
> > -module_init(f);
> >
> > @d depends on a && b && c@
> > identifier b.e, a.x;
> > declarer name module_exit;
> > declarer name module_pci_driver;
> > @@
> > -module_exit(e);
> > +module_pci_driver(x);
> >
> > Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
>
> It seems I got 3 independent versions of the same patch... I pushed the
> most recent one, then noticed this one. Thanks anyway.

No problem. It's fine with me.

> Brian




-- 
Vaishali
--
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/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

Re: [PATCH] mtd: denali: Use module_pci_driver Brian Norris <computersforpeace@gmail.com> - 2015-08-19 02:40 +0200
  Re: [PATCH] mtd: denali: Use module_pci_driver Vaishali Thakkar <vthakkar1994@gmail.com> - 2015-08-19 04:40 +0200

csiph-web