netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured
@ 2015-08-25  8:03 Simon Horman
  2015-08-25  8:34 ` Sergei Shtylyov
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Horman @ 2015-08-25  8:03 UTC (permalink / raw)
  To: David S. Miller, netdev, linux-sh
  Cc: Magnus Damm, Sergei Shtylyov, Simon Horman

From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>

Currently the renesas ethernet driver directory is compiled if SH_ETH is
configured rather than NET_VENDOR_RENESAS. Although incorrect that was
quite harmless as until recently as SH_ETH configured the only driver in
the renesas directory. However, as of c156633f1353 ("Renesas Ethernet AVB
driver proper") the renesas directory includes another driver, configured
by RAVB, and it makes little sense for it to have a hidden dependency on
SH_ETH.

Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
[horms: rewrote changelog]
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 drivers/net/ethernet/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Reposted with net-next prefix.

diff --git a/drivers/net/ethernet/Makefile b/drivers/net/ethernet/Makefile
index f42177b11723..ddfc808110a1 100644
--- a/drivers/net/ethernet/Makefile
+++ b/drivers/net/ethernet/Makefile
@@ -65,7 +65,7 @@ obj-$(CONFIG_NET_VENDOR_PASEMI) += pasemi/
 obj-$(CONFIG_NET_VENDOR_QLOGIC) += qlogic/
 obj-$(CONFIG_NET_VENDOR_QUALCOMM) += qualcomm/
 obj-$(CONFIG_NET_VENDOR_REALTEK) += realtek/
-obj-$(CONFIG_SH_ETH) += renesas/
+obj-$(CONFIG_NET_VENDOR_RENESAS) += renesas/
 obj-$(CONFIG_NET_VENDOR_RDC) += rdc/
 obj-$(CONFIG_NET_VENDOR_ROCKER) += rocker/
 obj-$(CONFIG_NET_VENDOR_SAMSUNG) += samsung/
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured
  2015-08-25  8:03 [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured Simon Horman
@ 2015-08-25  8:34 ` Sergei Shtylyov
  2015-08-25 21:15   ` Sergei Shtylyov
  0 siblings, 1 reply; 5+ messages in thread
From: Sergei Shtylyov @ 2015-08-25  8:34 UTC (permalink / raw)
  To: Simon Horman, David S. Miller, netdev, linux-sh; +Cc: Magnus Damm

On 8/25/2015 11:03 AM, Simon Horman wrote:

> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>
> Currently the renesas ethernet driver directory is compiled if SH_ETH is
> configured rather than NET_VENDOR_RENESAS. Although incorrect that was
> quite harmless as until recently as SH_ETH configured the only driver in
> the renesas directory. However, as of c156633f1353 ("Renesas Ethernet AVB
> driver proper") the renesas directory includes another driver, configured
> by RAVB, and it makes little sense for it to have a hidden dependency on
> SH_ETH.
>
> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> [horms: rewrote changelog]
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

    Sorry about missing that when submitting the AVB driver.

MBR, Sergei


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured
  2015-08-25  8:34 ` Sergei Shtylyov
@ 2015-08-25 21:15   ` Sergei Shtylyov
  2015-08-25 22:55     ` Simon Horman
  0 siblings, 1 reply; 5+ messages in thread
From: Sergei Shtylyov @ 2015-08-25 21:15 UTC (permalink / raw)
  To: Simon Horman, David S. Miller, netdev, linux-sh; +Cc: Magnus Damm

On 08/25/2015 11:34 AM, Sergei Shtylyov wrote:

>> From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>>
>> Currently the renesas ethernet driver directory is compiled if SH_ETH is
>> configured rather than NET_VENDOR_RENESAS. Although incorrect that was
>> quite harmless as until recently as SH_ETH configured the only driver in
>> the renesas directory. However, as of c156633f1353 ("Renesas Ethernet AVB
>> driver proper") the renesas directory includes another driver, configured
>> by RAVB, and it makes little sense for it to have a hidden dependency on
>> SH_ETH.
>>
>> Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>> [horms: rewrote changelog]
>> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
>
>     Sorry about missing that when submitting the AVB driver.

    BTW, why against net-next? I consider this a fix.

MBR, Sergei


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured
  2015-08-25 21:15   ` Sergei Shtylyov
@ 2015-08-25 22:55     ` Simon Horman
  2015-08-25 23:04       ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Horman @ 2015-08-25 22:55 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Simon Horman, David S. Miller, netdev, linux-sh, Magnus Damm

On Wed, Aug 26, 2015 at 12:15:57AM +0300, Sergei Shtylyov wrote:
> On 08/25/2015 11:34 AM, Sergei Shtylyov wrote:
> 
> >>From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> >>
> >>Currently the renesas ethernet driver directory is compiled if SH_ETH is
> >>configured rather than NET_VENDOR_RENESAS. Although incorrect that was
> >>quite harmless as until recently as SH_ETH configured the only driver in
> >>the renesas directory. However, as of c156633f1353 ("Renesas Ethernet AVB
> >>driver proper") the renesas directory includes another driver, configured
> >>by RAVB, and it makes little sense for it to have a hidden dependency on
> >>SH_ETH.
> >>
> >>Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
> >>[horms: rewrote changelog]
> >>Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> >
> >    Sorry about missing that when submitting the AVB driver.
> 
>    BTW, why against net-next? I consider this a fix.

I wasn't sure which way to go and decided to err on the side of caution with a
net-next submission. I have no objections to it being considered for next.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured
  2015-08-25 22:55     ` Simon Horman
@ 2015-08-25 23:04       ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2015-08-25 23:04 UTC (permalink / raw)
  To: horms; +Cc: sergei.shtylyov, horms+renesas, netdev, linux-sh, magnus.damm

From: Simon Horman <horms@verge.net.au>
Date: Wed, 26 Aug 2015 08:55:39 +1000

> On Wed, Aug 26, 2015 at 12:15:57AM +0300, Sergei Shtylyov wrote:
>> On 08/25/2015 11:34 AM, Sergei Shtylyov wrote:
>> 
>> >>From: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>> >>
>> >>Currently the renesas ethernet driver directory is compiled if SH_ETH is
>> >>configured rather than NET_VENDOR_RENESAS. Although incorrect that was
>> >>quite harmless as until recently as SH_ETH configured the only driver in
>> >>the renesas directory. However, as of c156633f1353 ("Renesas Ethernet AVB
>> >>driver proper") the renesas directory includes another driver, configured
>> >>by RAVB, and it makes little sense for it to have a hidden dependency on
>> >>SH_ETH.
>> >>
>> >>Signed-off-by: Kazuya Mizuguchi <kazuya.mizuguchi.ks@renesas.com>
>> >>[horms: rewrote changelog]
>> >>Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
>> >
>> >    Sorry about missing that when submitting the AVB driver.
>> 
>>    BTW, why against net-next? I consider this a fix.
> 
> I wasn't sure which way to go and decided to err on the side of caution with a
> net-next submission. I have no objections to it being considered for next.

I'll put it in the 'net' tree.

Applied, thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-25 23:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-25  8:03 [PATCH repost net-next] net: compile renesas directory if NET_VENDOR_RENESAS is configured Simon Horman
2015-08-25  8:34 ` Sergei Shtylyov
2015-08-25 21:15   ` Sergei Shtylyov
2015-08-25 22:55     ` Simon Horman
2015-08-25 23:04       ` David Miller

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).