* [PATCH 0/6] Remove redundant spi driver bus initialization
@ 2015-06-23 14:45 Antonio Borneo
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
2015-06-23 14:53 ` [PATCH 5/6] wireless: cw1200: " Antonio Borneo
0 siblings, 2 replies; 8+ messages in thread
From: Antonio Borneo @ 2015-06-23 14:45 UTC (permalink / raw)
To: Alan Ott, Alexander Aring, alsa-devel-K7yf7f+aM1XWsZ/bQMPhNw,
Andrzej Hajda, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b,
Greg Kroah-Hartman, Jaroslav Kysela, Jonathan Cameron, Kalle Valo,
Karol Wrona, Kyungmin Park, Lars-Peter Clausen, Liam Girdwood,
linux-iio-u79uwXL29TY76Z2rM5mHXA,
linux-media-u79uwXL29TY76Z2rM5mHXA,
linux-wireless-u79uwXL29TY76Z2rM5mHXA,
linux-wpan-u79uwXL29TY76Z2rM5mHXA, Mark Brown,
Mauro Carvalho Chehab, netdev-u79uwXL29TY76Z2rM5mHXA,
patches-yzvPICuk2AATkU/dhu1WVueM+bqZidxxQQ4Iyu8u01E,
Solomon Peachy, Takashi Iwai, Varka Bhadram
Cc: Antonio Borneo, linux-kernel-u79uwXL29TY76Z2rM5mHXA
This cleanup was already completed between end 2011 and early 2012
with a patch series from Lars-Peter Clausen:
https://lkml.org/lkml/2011/11/24/190
Later on new redundant initialization re-appeared here and there.
Time to cleanup again.
And, yes, I'm lazy! I copy-paste the exact same commit message from
Lars-Peter; only minor reformat to stay in 75 char/line and fix the
name of spi_register_driver().
Regards,
Antonio
Antonio Borneo (6):
ASoC: wm0010: Remove redundant spi driver bus initialization
iio: ssp_sensors: Remove redundant spi driver bus initialization
staging: mt29f_spinand: Remove redundant spi driver bus initialization
net: ieee802154: Remove redundant spi driver bus initialization
wireless: cw1200: Remove redundant spi driver bus initialization
[media] s5c73m3: Remove redundant spi driver bus initialization
drivers/iio/common/ssp_sensors/ssp_dev.c | 1 -
drivers/media/i2c/s5c73m3/s5c73m3-spi.c | 1 -
drivers/net/ieee802154/cc2520.c | 1 -
drivers/net/ieee802154/mrf24j40.c | 1 -
drivers/net/wireless/cw1200/cw1200_spi.c | 1 -
drivers/staging/mt29f_spinand/mt29f_spinand.c | 1 -
sound/soc/codecs/wm0010.c | 1 -
7 files changed, 7 deletions(-)
--
2.4.4
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 4/6] net: ieee802154: Remove redundant spi driver bus initialization
2015-06-23 14:45 [PATCH 0/6] Remove redundant spi driver bus initialization Antonio Borneo
@ 2015-06-23 14:52 ` Antonio Borneo
2015-06-23 15:06 ` Varka Bhadram
` (3 more replies)
2015-06-23 14:53 ` [PATCH 5/6] wireless: cw1200: " Antonio Borneo
1 sibling, 4 replies; 8+ messages in thread
From: Antonio Borneo @ 2015-06-23 14:52 UTC (permalink / raw)
To: Alan Ott, Alexander Aring, Varka Bhadram, linux-wpan, netdev
Cc: Antonio Borneo, linux-kernel
In ancient times it was necessary to manually initialize the bus
field of an spi_driver to spi_bus_type. These days this is done in
spi_register_driver(), so we can drop the manual assignment.
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
To: Alan Ott <alan@signal11.us>
To: Alexander Aring <alex.aring@gmail.com>
To: Varka Bhadram <varkabhadram@gmail.com>
To: linux-wpan@vger.kernel.org
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/net/ieee802154/cc2520.c | 1 -
drivers/net/ieee802154/mrf24j40.c | 1 -
2 files changed, 2 deletions(-)
diff --git a/drivers/net/ieee802154/cc2520.c b/drivers/net/ieee802154/cc2520.c
index f833b8b..bd957f1 100644
--- a/drivers/net/ieee802154/cc2520.c
+++ b/drivers/net/ieee802154/cc2520.c
@@ -1046,7 +1046,6 @@ MODULE_DEVICE_TABLE(of, cc2520_of_ids);
static struct spi_driver cc2520_driver = {
.driver = {
.name = "cc2520",
- .bus = &spi_bus_type,
.owner = THIS_MODULE,
.of_match_table = of_match_ptr(cc2520_of_ids),
},
diff --git a/drivers/net/ieee802154/mrf24j40.c b/drivers/net/ieee802154/mrf24j40.c
index fba2dfd..bc8fb26 100644
--- a/drivers/net/ieee802154/mrf24j40.c
+++ b/drivers/net/ieee802154/mrf24j40.c
@@ -812,7 +812,6 @@ MODULE_DEVICE_TABLE(spi, mrf24j40_ids);
static struct spi_driver mrf24j40_driver = {
.driver = {
.name = "mrf24j40",
- .bus = &spi_bus_type,
.owner = THIS_MODULE,
},
.id_table = mrf24j40_ids,
--
2.4.4
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 4/6] net: ieee802154: Remove redundant spi driver bus initialization
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
@ 2015-06-23 15:06 ` Varka Bhadram
2015-06-23 15:08 ` Alan Ott
` (2 subsequent siblings)
3 siblings, 0 replies; 8+ messages in thread
From: Varka Bhadram @ 2015-06-23 15:06 UTC (permalink / raw)
To: Antonio Borneo, Alan Ott, Alexander Aring, linux-wpan, netdev
Cc: linux-kernel
Hi Antonio Borneo,
On Tuesday 23 June 2015 08:22 PM, Antonio Borneo wrote:
> In ancient times it was necessary to manually initialize the bus
> field of an spi_driver to spi_bus_type. These days this is done in
> spi_register_driver(), so we can drop the manual assignment.
>
> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
> To: Alan Ott <alan@signal11.us>
> To: Alexander Aring <alex.aring@gmail.com>
> To: Varka Bhadram <varkabhadram@gmail.com>
> To: linux-wpan@vger.kernel.org
> To: netdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/net/ieee802154/cc2520.c | 1 -
> drivers/net/ieee802154/mrf24j40.c | 1 -
> 2 files changed, 2 deletions(-)
>
> diff --git a/drivers/net/ieee802154/cc2520.c b/drivers/net/ieee802154/cc2520.c
> index f833b8b..bd957f1 100644
> --- a/drivers/net/ieee802154/cc2520.c
> +++ b/drivers/net/ieee802154/cc2520.c
> @@ -1046,7 +1046,6 @@ MODULE_DEVICE_TABLE(of, cc2520_of_ids);
> static struct spi_driver cc2520_driver = {
> .driver = {
> .name = "cc2520",
> - .bus = &spi_bus_type,
> .owner = THIS_MODULE,
> .of_match_table = of_match_ptr(cc2520_of_ids),
> },
Acked-by: Varka Bhadram <varkabhadram@gmail.com>
> diff --git a/drivers/net/ieee802154/mrf24j40.c b/drivers/net/ieee802154/mrf24j40.c
> index fba2dfd..bc8fb26 100644
> --- a/drivers/net/ieee802154/mrf24j40.c
> +++ b/drivers/net/ieee802154/mrf24j40.c
> @@ -812,7 +812,6 @@ MODULE_DEVICE_TABLE(spi, mrf24j40_ids);
> static struct spi_driver mrf24j40_driver = {
> .driver = {
> .name = "mrf24j40",
> - .bus = &spi_bus_type,
> .owner = THIS_MODULE,
> },
> .id_table = mrf24j40_ids,
--
Best regards,
Varka Bhadram.
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH 4/6] net: ieee802154: Remove redundant spi driver bus initialization
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
2015-06-23 15:06 ` Varka Bhadram
@ 2015-06-23 15:08 ` Alan Ott
2015-07-13 17:29 ` Alexander Aring
2015-07-14 5:07 ` Marcel Holtmann
3 siblings, 0 replies; 8+ messages in thread
From: Alan Ott @ 2015-06-23 15:08 UTC (permalink / raw)
To: Antonio Borneo, Alexander Aring, Varka Bhadram, linux-wpan,
netdev
Cc: linux-kernel
On 06/23/2015 10:52 AM, Antonio Borneo wrote:
> In ancient times it was necessary to manually initialize the bus
> field of an spi_driver to spi_bus_type. These days this is done in
> spi_register_driver(), so we can drop the manual assignment.
>
> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
> To: Alan Ott <alan@signal11.us>
> To: Alexander Aring <alex.aring@gmail.com>
> To: Varka Bhadram <varkabhadram@gmail.com>
> To: linux-wpan@vger.kernel.org
> To: netdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/net/ieee802154/cc2520.c | 1 -
> drivers/net/ieee802154/mrf24j40.c | 1 -
> 2 files changed, 2 deletions(-)
>
> diff --git a/drivers/net/ieee802154/cc2520.c b/drivers/net/ieee802154/cc2520.c
> index f833b8b..bd957f1 100644
> --- a/drivers/net/ieee802154/cc2520.c
> +++ b/drivers/net/ieee802154/cc2520.c
> @@ -1046,7 +1046,6 @@ MODULE_DEVICE_TABLE(of, cc2520_of_ids);
> static struct spi_driver cc2520_driver = {
> .driver = {
> .name = "cc2520",
> - .bus = &spi_bus_type,
> .owner = THIS_MODULE,
> .of_match_table = of_match_ptr(cc2520_of_ids),
> },
> diff --git a/drivers/net/ieee802154/mrf24j40.c b/drivers/net/ieee802154/mrf24j40.c
> index fba2dfd..bc8fb26 100644
> --- a/drivers/net/ieee802154/mrf24j40.c
> +++ b/drivers/net/ieee802154/mrf24j40.c
> @@ -812,7 +812,6 @@ MODULE_DEVICE_TABLE(spi, mrf24j40_ids);
> static struct spi_driver mrf24j40_driver = {
> .driver = {
> .name = "mrf24j40",
> - .bus = &spi_bus_type,
> .owner = THIS_MODULE,
> },
> .id_table = mrf24j40_ids,
Acked-by: Alan Ott <alan@signal11.us>
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [PATCH 4/6] net: ieee802154: Remove redundant spi driver bus initialization
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
2015-06-23 15:06 ` Varka Bhadram
2015-06-23 15:08 ` Alan Ott
@ 2015-07-13 17:29 ` Alexander Aring
2015-07-14 5:07 ` Marcel Holtmann
3 siblings, 0 replies; 8+ messages in thread
From: Alexander Aring @ 2015-07-13 17:29 UTC (permalink / raw)
To: Antonio Borneo
Cc: Alan Ott, Varka Bhadram, linux-wpan, netdev, linux-kernel, marcel
On Tue, Jun 23, 2015 at 10:52:52PM +0800, Antonio Borneo wrote:
> In ancient times it was necessary to manually initialize the bus
> field of an spi_driver to spi_bus_type. These days this is done in
> spi_register_driver(), so we can drop the manual assignment.
>
Marcel,
I don't see this patch in any linux-next, net-next, bluetooth-next tree.
Could you please apply this patch with the acks by Alan and Varka?
- Alex
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 4/6] net: ieee802154: Remove redundant spi driver bus initialization
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
` (2 preceding siblings ...)
2015-07-13 17:29 ` Alexander Aring
@ 2015-07-14 5:07 ` Marcel Holtmann
3 siblings, 0 replies; 8+ messages in thread
From: Marcel Holtmann @ 2015-07-14 5:07 UTC (permalink / raw)
To: Antonio Borneo
Cc: Alan Ott, Alexander Aring, Varka Bhadram, linux-wpan, netdev,
linux-kernel
Hi Antonio,
> In ancient times it was necessary to manually initialize the bus
> field of an spi_driver to spi_bus_type. These days this is done in
> spi_register_driver(), so we can drop the manual assignment.
>
> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
> To: Alan Ott <alan@signal11.us>
> To: Alexander Aring <alex.aring@gmail.com>
> To: Varka Bhadram <varkabhadram@gmail.com>
> To: linux-wpan@vger.kernel.org
> To: netdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/net/ieee802154/cc2520.c | 1 -
> drivers/net/ieee802154/mrf24j40.c | 1 -
> 2 files changed, 2 deletions(-)
patch has been applied to bluetooth-next tree.
Regards
Marcel
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 5/6] wireless: cw1200: Remove redundant spi driver bus initialization
2015-06-23 14:45 [PATCH 0/6] Remove redundant spi driver bus initialization Antonio Borneo
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
@ 2015-06-23 14:53 ` Antonio Borneo
2015-07-21 13:44 ` [5/6] " Kalle Valo
1 sibling, 1 reply; 8+ messages in thread
From: Antonio Borneo @ 2015-06-23 14:53 UTC (permalink / raw)
To: Solomon Peachy, Kalle Valo, linux-wireless, netdev
Cc: Antonio Borneo, linux-kernel
In ancient times it was necessary to manually initialize the bus
field of an spi_driver to spi_bus_type. These days this is done in
spi_register_driver(), so we can drop the manual assignment.
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
To: Solomon Peachy <pizza@shaftnet.org>
To: Kalle Valo <kvalo@codeaurora.org>
To: linux-wireless@vger.kernel.org
To: netdev@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
---
drivers/net/wireless/cw1200/cw1200_spi.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/net/wireless/cw1200/cw1200_spi.c b/drivers/net/wireless/cw1200/cw1200_spi.c
index 7603546..29185ae 100644
--- a/drivers/net/wireless/cw1200/cw1200_spi.c
+++ b/drivers/net/wireless/cw1200/cw1200_spi.c
@@ -467,7 +467,6 @@ static struct spi_driver spi_driver = {
.remove = cw1200_spi_disconnect,
.driver = {
.name = "cw1200_wlan_spi",
- .bus = &spi_bus_type,
.owner = THIS_MODULE,
#ifdef CONFIG_PM
.pm = &cw1200_pm_ops,
--
2.4.4
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [5/6] wireless: cw1200: Remove redundant spi driver bus initialization
2015-06-23 14:53 ` [PATCH 5/6] wireless: cw1200: " Antonio Borneo
@ 2015-07-21 13:44 ` Kalle Valo
0 siblings, 0 replies; 8+ messages in thread
From: Kalle Valo @ 2015-07-21 13:44 UTC (permalink / raw)
To: Antonio Borneo
Cc: Solomon Peachy, linux-wireless, netdev, Antonio Borneo,
linux-kernel
> In ancient times it was necessary to manually initialize the bus
> field of an spi_driver to spi_bus_type. These days this is done in
> spi_register_driver(), so we can drop the manual assignment.
>
> Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
> To: Solomon Peachy <pizza@shaftnet.org>
> To: Kalle Valo <kvalo@codeaurora.org>
> To: linux-wireless@vger.kernel.org
> To: netdev@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
Thanks, applied to wireless-drivers-next.git.
Kalle Valo
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-07-21 13:44 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-23 14:45 [PATCH 0/6] Remove redundant spi driver bus initialization Antonio Borneo
2015-06-23 14:52 ` [PATCH 4/6] net: ieee802154: " Antonio Borneo
2015-06-23 15:06 ` Varka Bhadram
2015-06-23 15:08 ` Alan Ott
2015-07-13 17:29 ` Alexander Aring
2015-07-14 5:07 ` Marcel Holtmann
2015-06-23 14:53 ` [PATCH 5/6] wireless: cw1200: " Antonio Borneo
2015-07-21 13:44 ` [5/6] " Kalle Valo
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).