* [PATCH] net: drivers/net/hippi/Kconfig should be sourced
@ 2011-11-08 20:31 Paul Bolle
2011-11-08 20:40 ` Jeff Kirsher
2011-11-09 20:46 ` David Miller
0 siblings, 2 replies; 5+ messages in thread
From: Paul Bolle @ 2011-11-08 20:31 UTC (permalink / raw)
To: David S. Miller; +Cc: netdev, linux-kernel, Jeff Kirsher
Commit ff5a3b509e ("hippi: Move the HIPPI driver") moved the HIPPI
driver into drivers/net/hippi. It didn't source
drivers/net/hippi/Kconfig though, so it didn't make all necessary
Kconfig changes. So let drivers/net/kconfig source HIPPI's Kconfig file.
Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
---
git grep tested only. Perhaps the exact spot where
drivers/net/hippi/Kconfig gets sourced is relevant, so this needs
(build) testing by people actually familiar with the HIPPI driver.
drivers/net/Kconfig | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
index 583f66c..654a5e9 100644
--- a/drivers/net/Kconfig
+++ b/drivers/net/Kconfig
@@ -245,6 +245,8 @@ source "drivers/net/ethernet/Kconfig"
source "drivers/net/fddi/Kconfig"
+source "drivers/net/hippi/Kconfig"
+
config NET_SB1000
tristate "General Instruments Surfboard 1000"
depends on PNP
--
1.7.4.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] net: drivers/net/hippi/Kconfig should be sourced
2011-11-08 20:31 [PATCH] net: drivers/net/hippi/Kconfig should be sourced Paul Bolle
@ 2011-11-08 20:40 ` Jeff Kirsher
2011-11-09 20:46 ` David Miller
1 sibling, 0 replies; 5+ messages in thread
From: Jeff Kirsher @ 2011-11-08 20:40 UTC (permalink / raw)
To: Paul Bolle
Cc: David S. Miller, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
[-- Attachment #1: Type: text/plain, Size: 1123 bytes --]
On Tue, 2011-11-08 at 12:31 -0800, Paul Bolle wrote:
> Commit ff5a3b509e ("hippi: Move the HIPPI driver") moved the HIPPI
> driver into drivers/net/hippi. It didn't source
> drivers/net/hippi/Kconfig though, so it didn't make all necessary
> Kconfig changes. So let drivers/net/kconfig source HIPPI's Kconfig file.
>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> ---
> git grep tested only. Perhaps the exact spot where
> drivers/net/hippi/Kconfig gets sourced is relevant, so this needs
> (build) testing by people actually familiar with the HIPPI driver.
>
> drivers/net/Kconfig | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
> index 583f66c..654a5e9 100644
> --- a/drivers/net/Kconfig
> +++ b/drivers/net/Kconfig
> @@ -245,6 +245,8 @@ source "drivers/net/ethernet/Kconfig"
>
> source "drivers/net/fddi/Kconfig"
>
> +source "drivers/net/hippi/Kconfig"
> +
> config NET_SB1000
> tristate "General Instruments Surfboard 1000"
> depends on PNP
Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] net: drivers/net/hippi/Kconfig should be sourced
2011-11-08 20:31 [PATCH] net: drivers/net/hippi/Kconfig should be sourced Paul Bolle
2011-11-08 20:40 ` Jeff Kirsher
@ 2011-11-09 20:46 ` David Miller
2011-11-09 21:08 ` Paul Bolle
1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2011-11-09 20:46 UTC (permalink / raw)
To: pebolle; +Cc: netdev, linux-kernel, jeffrey.t.kirsher
From: Paul Bolle <pebolle@tiscali.nl>
Date: Tue, 08 Nov 2011 21:31:10 +0100
> Commit ff5a3b509e ("hippi: Move the HIPPI driver") moved the HIPPI
> driver into drivers/net/hippi. It didn't source
> drivers/net/hippi/Kconfig though, so it didn't make all necessary
> Kconfig changes. So let drivers/net/kconfig source HIPPI's Kconfig file.
>
> Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
> ---
> git grep tested only. Perhaps the exact spot where
> drivers/net/hippi/Kconfig gets sourced is relevant, so this needs
> (build) testing by people actually familiar with the HIPPI driver.
Please at least type "make oldconfig" with CONFIG_HIPPI enabled or
similar before submitting patches like this.
There is nothing architecture or platform specific about getting
the option enabled enough for you to see this:
drivers/net/hippi/Kconfig:40: syntax error
drivers/net/hippi/Kconfig:20: missing end statement for this entry
drivers/net/Kconfig:28: missing end statement for this entry
drivers/Kconfig:1: missing end statement for this entry
drivers/net/hippi/Kconfig:39: invalid statement
drivers/net/Kconfig:341: unexpected end statement
drivers/Kconfig:139: unexpected end statement
make[1]: *** [oldconfig] Error 1
make: *** [oldconfig] Error 2
I've fixed this up but if you can't be bothered to type "make" I
seriously can't be bothered to even look at your patch submissions.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] net: drivers/net/hippi/Kconfig should be sourced
2011-11-09 20:46 ` David Miller
@ 2011-11-09 21:08 ` Paul Bolle
2011-11-09 21:15 ` David Miller
0 siblings, 1 reply; 5+ messages in thread
From: Paul Bolle @ 2011-11-09 21:08 UTC (permalink / raw)
To: David Miller; +Cc: netdev, linux-kernel, jeffrey.t.kirsher
On Wed, 2011-11-09 at 15:46 -0500, David Miller wrote:
> Please at least type "make oldconfig" with CONFIG_HIPPI enabled or
> similar before submitting patches like this.
>
> There is nothing architecture or platform specific about getting
> the option enabled enough for you to see this:
>
> drivers/net/hippi/Kconfig:40: syntax error
> drivers/net/hippi/Kconfig:20: missing end statement for this entry
> drivers/net/Kconfig:28: missing end statement for this entry
> drivers/Kconfig:1: missing end statement for this entry
> drivers/net/hippi/Kconfig:39: invalid statement
> drivers/net/Kconfig:341: unexpected end statement
> drivers/Kconfig:139: unexpected end statement
> make[1]: *** [oldconfig] Error 1
> make: *** [oldconfig] Error 2
>
> I've fixed this up but if you can't be bothered to type "make" I
> seriously can't be bothered to even look at your patch submissions.
Would it be better if I hadn't submitted this as a patch (with a
warning, which you perhaps missed, that I didn't build test it) but as a
simple message to notify the people who wrote the patch that started all
this, netdev and you, that that commit was incomplete? If so, I'd be
glad to only do that in the future.
Paul Bolle
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] net: drivers/net/hippi/Kconfig should be sourced
2011-11-09 21:08 ` Paul Bolle
@ 2011-11-09 21:15 ` David Miller
0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2011-11-09 21:15 UTC (permalink / raw)
To: pebolle; +Cc: netdev, linux-kernel, jeffrey.t.kirsher
From: Paul Bolle <pebolle@tiscali.nl>
Date: Wed, 09 Nov 2011 22:08:36 +0100
> Would it be better if I hadn't submitted this as a patch
Yes, because eventually someone who actually cared about the
situation would submit a properly tested patch.
If nobody else notices the problem, that's fine too, because it means
nobody else cares about whether HIPPI is missing from the build or
not.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-11-09 21:15 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-08 20:31 [PATCH] net: drivers/net/hippi/Kconfig should be sourced Paul Bolle
2011-11-08 20:40 ` Jeff Kirsher
2011-11-09 20:46 ` David Miller
2011-11-09 21:08 ` Paul Bolle
2011-11-09 21:15 ` 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).