linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Dirk Brandewie <dirk.brandewie@gmail.com>
To: Axel Lin <axel.lin@gmail.com>
Cc: linux-kernel@vger.kernel.org, Rudolf Marek <r.marek@assembler.cz>,
	"Jean Delvare (PC drivers, core)" <khali@linux-fr.org>,
	"Ben Dooks (embedded platforms)" <ben-linux@fluff.org>,
	Olof Johansson <olof@lixom.net>,
	"Mark M. Hoffman" <mhoffman@lightlink.com>,
	Tomoya MORINAGA <tomoya-linux@dsn.lapis-semi.com>,
	Wolfram Sang <w.sang@pengutronix.de>,
	Feng Tang <feng.tang@intel.com>,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>,
	linux-i2c@vger.kernel.org
Subject: Re: [PATCH] i2c: Convert to DEFINE_PCI_DEVICE_TABLE
Date: Mon, 02 Jan 2012 07:44:52 -0800	[thread overview]
Message-ID: <4F01D0F4.2070301@gmail.com> (raw)
In-Reply-To: <1324956897.9775.2.camel@phoenix>

On 12/26/2011 07:34 PM, Axel Lin wrote:
> Convert static struct pci_device_id *[] to static DEFINE_PCI_DEVICE_TABLE
> tables.
>
> Signed-off-by: Axel Lin<axel.lin@gmail.com>
> Cc: Rudolf Marek<r.marek@assembler.cz>
> Cc: Jean Delvare<khali@linux-fr.org>
> Cc: Ben Dooks<ben-linux@fluff.org>
> Cc: Olof Johansson<olof@lixom.net>
> Cc: "Mark M. Hoffman"<mhoffman@lightlink.com>
> Cc: Dirk Brandewie<dirk.brandewie@gmail.com>
> Cc: Tomoya MORINAGA<tomoya-linux@dsn.lapis-semi.com>
> Cc: Wolfram Sang<w.sang@pengutronix.de>
> Cc: Feng Tang<feng.tang@intel.com>
> Cc: Sebastian Andrzej Siewior<bigeasy@linutronix.de>
> Cc: linux-i2c@vger.kernel.org
> ---
> This patch is against linux-next tree.
> Axel
>
>   drivers/i2c/busses/i2c-ali1563.c           |    2 +-
>   drivers/i2c/busses/i2c-ali15x3.c           |    2 +-
>   drivers/i2c/busses/i2c-amd756.c            |    2 +-
>   drivers/i2c/busses/i2c-amd8111.c           |    2 +-
>   drivers/i2c/busses/i2c-designware-pcidrv.c |    2 +-
>   drivers/i2c/busses/i2c-eg20t.c             |    2 +-
>   drivers/i2c/busses/i2c-hydra.c             |    2 +-
>   drivers/i2c/busses/i2c-i801.c              |    2 +-
>   drivers/i2c/busses/i2c-intel-mid.c         |    2 +-
>   drivers/i2c/busses/i2c-nforce2.c           |    2 +-
>   drivers/i2c/busses/i2c-pasemi.c            |    2 +-
>   drivers/i2c/busses/i2c-piix4.c             |    2 +-
>   drivers/i2c/busses/i2c-pxa-pci.c           |    2 +-
>   drivers/i2c/busses/i2c-sis5595.c           |    2 +-
>   drivers/i2c/busses/i2c-sis630.c            |    2 +-
>   drivers/i2c/busses/i2c-sis96x.c            |    2 +-
>   drivers/i2c/busses/i2c-via.c               |    2 +-
>   drivers/i2c/busses/i2c-viapro.c            |    2 +-
>   drivers/i2c/busses/scx200_acb.c            |    2 +-
>   19 files changed, 19 insertions(+), 19 deletions(-)
>

> diff --git a/drivers/i2c/busses/i2c-designware-pcidrv.c b/drivers/i2c/busses/i2c-designware-pcidrv.c
> index 9e89e73..37f4211 100644
> --- a/drivers/i2c/busses/i2c-designware-pcidrv.c
> +++ b/drivers/i2c/busses/i2c-designware-pcidrv.c
> @@ -349,7 +349,7 @@ static void __devexit i2c_dw_pci_remove(struct pci_dev *pdev)
>   /* work with hotplug and coldplug */
>   MODULE_ALIAS("i2c_designware-pci");
>
> -DEFINE_PCI_DEVICE_TABLE(i2_designware_pci_ids) = {
> +static DEFINE_PCI_DEVICE_TABLE(i2_designware_pci_ids) = {
>   	/* Moorestown */
>   	{ PCI_VDEVICE(INTEL, 0x0802), moorestown_0 },
>   	{ PCI_VDEVICE(INTEL, 0x0803), moorestown_1 },
Acked-by: Dirk Brandewie <dirk.brandewie@gmail.com>

      parent reply	other threads:[~2012-01-02 15:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-27  3:34 [PATCH] i2c: Convert to DEFINE_PCI_DEVICE_TABLE Axel Lin
2011-12-27 15:17 ` Wolfram Sang
2012-01-02 15:44 ` Dirk Brandewie [this message]

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=4F01D0F4.2070301@gmail.com \
    --to=dirk.brandewie@gmail.com \
    --cc=axel.lin@gmail.com \
    --cc=ben-linux@fluff.org \
    --cc=bigeasy@linutronix.de \
    --cc=feng.tang@intel.com \
    --cc=khali@linux-fr.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhoffman@lightlink.com \
    --cc=olof@lixom.net \
    --cc=r.marek@assembler.cz \
    --cc=tomoya-linux@dsn.lapis-semi.com \
    --cc=w.sang@pengutronix.de \
    /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;
as well as URLs for NNTP newsgroup(s).