All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wolfram Sang <wsa@the-dreams.de>
To: linux-kernel@vger.kernel.org
Cc: Wolfram Sang <wsa@the-dreams.de>,
	Minghuan Lian <minghuan.Lian@freescale.com>,
	Mingkai Hu <mingkai.hu@freescale.com>,
	Roy Zang <tie-fei.zang@freescale.com>,
	Bjorn Helgaas <bhelgaas@google.com>,
	linuxppc-dev@lists.ozlabs.org, linux-pci@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 13/28] pci: host: drop owner assignment from platform_drivers
Date: Sun, 21 Dec 2014 22:14:34 +0100	[thread overview]
Message-ID: <1419196495-9626-14-git-send-email-wsa@the-dreams.de> (raw)
In-Reply-To: <1419196495-9626-1-git-send-email-wsa@the-dreams.de>

This platform_driver does not need to set an owner, it will be populated by the
driver core.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
---
Generated with coccinelle. SmPL file is in the introductory msg. The big
cleanup was pulled in this merge window. This series catches the bits fallen
through. The patches shall go in via the subsystem trees.

 drivers/pci/host/pci-layerscape.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pci/host/pci-layerscape.c b/drivers/pci/host/pci-layerscape.c
index 6697b1a4d4fa..68c9e5e9b0a8 100644
--- a/drivers/pci/host/pci-layerscape.c
+++ b/drivers/pci/host/pci-layerscape.c
@@ -167,7 +167,6 @@ MODULE_DEVICE_TABLE(of, ls_pcie_of_match);
 static struct platform_driver ls_pcie_driver = {
 	.driver = {
 		.name = "layerscape-pcie",
-		.owner = THIS_MODULE,
 		.of_match_table = ls_pcie_of_match,
 	},
 };
-- 
2.1.3


WARNING: multiple messages have this Message-ID (diff)
From: Wolfram Sang <wsa@the-dreams.de>
To: linux-kernel@vger.kernel.org
Cc: Wolfram Sang <wsa@the-dreams.de>,
	linuxppc-dev@lists.ozlabs.org,
	Minghuan Lian <minghuan.Lian@freescale.com>,
	linux-pci@vger.kernel.org, Bjorn Helgaas <bhelgaas@google.com>,
	Mingkai Hu <mingkai.hu@freescale.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH 13/28] pci: host: drop owner assignment from platform_drivers
Date: Sun, 21 Dec 2014 22:14:34 +0100	[thread overview]
Message-ID: <1419196495-9626-14-git-send-email-wsa@the-dreams.de> (raw)
In-Reply-To: <1419196495-9626-1-git-send-email-wsa@the-dreams.de>

This platform_driver does not need to set an owner, it will be populated by the
driver core.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
---
Generated with coccinelle. SmPL file is in the introductory msg. The big
cleanup was pulled in this merge window. This series catches the bits fallen
through. The patches shall go in via the subsystem trees.

 drivers/pci/host/pci-layerscape.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pci/host/pci-layerscape.c b/drivers/pci/host/pci-layerscape.c
index 6697b1a4d4fa..68c9e5e9b0a8 100644
--- a/drivers/pci/host/pci-layerscape.c
+++ b/drivers/pci/host/pci-layerscape.c
@@ -167,7 +167,6 @@ MODULE_DEVICE_TABLE(of, ls_pcie_of_match);
 static struct platform_driver ls_pcie_driver = {
 	.driver = {
 		.name = "layerscape-pcie",
-		.owner = THIS_MODULE,
 		.of_match_table = ls_pcie_of_match,
 	},
 };
-- 
2.1.3

WARNING: multiple messages have this Message-ID (diff)
From: wsa@the-dreams.de (Wolfram Sang)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 13/28] pci: host: drop owner assignment from platform_drivers
Date: Sun, 21 Dec 2014 22:14:34 +0100	[thread overview]
Message-ID: <1419196495-9626-14-git-send-email-wsa@the-dreams.de> (raw)
In-Reply-To: <1419196495-9626-1-git-send-email-wsa@the-dreams.de>

This platform_driver does not need to set an owner, it will be populated by the
driver core.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
---
Generated with coccinelle. SmPL file is in the introductory msg. The big
cleanup was pulled in this merge window. This series catches the bits fallen
through. The patches shall go in via the subsystem trees.

 drivers/pci/host/pci-layerscape.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/pci/host/pci-layerscape.c b/drivers/pci/host/pci-layerscape.c
index 6697b1a4d4fa..68c9e5e9b0a8 100644
--- a/drivers/pci/host/pci-layerscape.c
+++ b/drivers/pci/host/pci-layerscape.c
@@ -167,7 +167,6 @@ MODULE_DEVICE_TABLE(of, ls_pcie_of_match);
 static struct platform_driver ls_pcie_driver = {
 	.driver = {
 		.name = "layerscape-pcie",
-		.owner = THIS_MODULE,
 		.of_match_table = ls_pcie_of_match,
 	},
 };
-- 
2.1.3

  parent reply	other threads:[~2014-12-21 21:21 UTC|newest]

Thread overview: 81+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-21 21:14 [PATCH 00/28] remove .owner for most platform_drivers: the missing bits Wolfram Sang
2014-12-21 21:14 ` Wolfram Sang
2014-12-21 21:14 ` Wolfram Sang
2014-12-21 21:14 ` Wolfram Sang
2014-12-21 21:14 ` [PATCH 01/28] ARM: mach-exynos: drop owner assignment from platform_drivers Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-21 21:14 ` [PATCH 02/28] mips: lantiq: xway: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 03/28] mips: pci: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 04/28] char: ipmi: " Wolfram Sang
2014-12-23 13:50   ` Corey Minyard
2014-12-21 21:14 ` [PATCH 05/28] cpufreq: " Wolfram Sang
2014-12-22  1:44   ` Viresh Kumar
2014-12-22 22:39     ` Rafael J. Wysocki
2014-12-31 10:23       ` Wolfram Sang
2015-01-30  0:12         ` Rafael J. Wysocki
2014-12-21 21:14 ` [PATCH 06/28] dma: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-22 15:38   ` Vinod Koul
2014-12-22 15:38     ` Vinod Koul
2014-12-31 10:23     ` Wolfram Sang
2014-12-31 10:23       ` Wolfram Sang
2015-01-13 15:58       ` Vinod Koul
2015-01-13 15:58         ` Vinod Koul
2014-12-21 21:14 ` [PATCH 07/28] gpio: " Wolfram Sang
2015-01-14  8:15   ` Linus Walleij
2014-12-21 21:14 ` [PATCH 08/28] gpu: drm: rockchip: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 09/28] iommu: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2015-01-05 11:08   ` Joerg Roedel
2015-01-05 11:08     ` Joerg Roedel
2015-01-05 11:08     ` Joerg Roedel
2014-12-21 21:14 ` [PATCH 10/28] net: ethernet: stmicro: stmmac: " Wolfram Sang
2014-12-22 21:31   ` David Miller
2014-12-21 21:14 ` [PATCH 11/28] net: wireless: ath: ath5k: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2015-01-06 18:41   ` Kalle Valo
2015-01-06 18:41     ` Kalle Valo
2014-12-21 21:14 ` [PATCH 12/28] of: " Wolfram Sang
2014-12-21 21:14 ` Wolfram Sang [this message]
2014-12-21 21:14   ` [PATCH 13/28] pci: host: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2015-01-16  0:49   ` Bjorn Helgaas
2015-01-16  0:49     ` Bjorn Helgaas
2015-01-16  0:49     ` Bjorn Helgaas
2014-12-21 21:14 ` [PATCH 14/28] phy: " Wolfram Sang
2014-12-22 10:48   ` Kishon Vijay Abraham I
2014-12-21 21:14 ` [PATCH 15/28] pinctrl: intel: " Wolfram Sang
2014-12-22 13:35   ` Mika Westerberg
2015-01-09  9:48   ` Linus Walleij
2014-12-21 21:14 ` [PATCH 16/28] rtc: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 17/28] scsi: " Wolfram Sang
2015-01-29  6:54   ` Finn Thain
2014-12-21 21:14 ` [PATCH 18/28] thermal: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-22  3:01   ` Zhang Rui
2014-12-22  3:01     ` Zhang Rui
2014-12-21 21:14 ` [PATCH 19/28] thermal: int340x_thermal: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 20/28] tty: serial: 8250: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 21/28] usb: gadget: udc: bdc: " Wolfram Sang
2014-12-21 21:14 ` [PATCH 22/28] watchdog: " Wolfram Sang
2014-12-22 14:08   ` Wim Van Sebroeck
2015-01-13 12:11   ` [22/28] " Guenter Roeck
2014-12-21 21:14 ` [PATCH 23/28] ASoC: intel: " Wolfram Sang
2014-12-22 11:46   ` Mark Brown
2014-12-21 21:14 ` [PATCH 24/28] ASoC: intel: sst: " Wolfram Sang
2014-12-22 11:46   ` Mark Brown
2014-12-21 21:14 ` [PATCH 25/28] ASoC: omap: " Wolfram Sang
2014-12-22 12:02   ` Mark Brown
2014-12-22 12:02     ` Mark Brown
2014-12-21 21:14 ` [PATCH 26/28] ASoC: pxa: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-22 12:02   ` Mark Brown
2014-12-22 12:02     ` Mark Brown
2014-12-21 21:14 ` [PATCH 27/28] ASoC: samsung: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang
2014-12-22 12:02   ` Mark Brown
2014-12-22 12:02     ` Mark Brown
2014-12-21 21:14 ` [PATCH 28/28] macintosh: " Wolfram Sang
2014-12-21 21:14   ` Wolfram Sang

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=1419196495-9626-14-git-send-email-wsa@the-dreams.de \
    --to=wsa@the-dreams.de \
    --cc=bhelgaas@google.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=minghuan.Lian@freescale.com \
    --cc=mingkai.hu@freescale.com \
    --cc=tie-fei.zang@freescale.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 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.