* [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
@ 2013-06-03 17:23 Ben Chan
2013-06-03 17:48 ` Greg Kroah-Hartman
2013-06-03 18:30 ` Greg Kroah-Hartman
0 siblings, 2 replies; 7+ messages in thread
From: Ben Chan @ 2013-06-03 17:23 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: devel, linux-kernel, benchan, Sage Ahn
The gdm72xx driver needs to have either the USB or SDIO implementation
enabled to provide useful functionalities, so the driver should depend
on either USB or MMC.
Signed-off-by: Ben Chan <benchan@chromium.org>
Cc: Sage Ahn <syahn@gctsemi.com>
---
drivers/staging/gdm72xx/Kconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig
index 6905913..8af0dd4 100644
--- a/drivers/staging/gdm72xx/Kconfig
+++ b/drivers/staging/gdm72xx/Kconfig
@@ -4,7 +4,7 @@
menuconfig WIMAX_GDM72XX
tristate "GCT GDM72xx WiMAX support"
- depends on NET
+ depends on NET && (USB || MMC)
help
Support for the GCT GDM72xx WiMAX chip
--
1.8.2.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 17:23 [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC Ben Chan
@ 2013-06-03 17:48 ` Greg Kroah-Hartman
2013-06-03 18:18 ` Ben Chan
2013-06-03 18:30 ` Greg Kroah-Hartman
1 sibling, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2013-06-03 17:48 UTC (permalink / raw)
To: Ben Chan; +Cc: devel, linux-kernel, Sage Ahn
On Mon, Jun 03, 2013 at 10:23:45AM -0700, Ben Chan wrote:
> The gdm72xx driver needs to have either the USB or SDIO implementation
> enabled to provide useful functionalities, so the driver should depend
> on either USB or MMC.
>
> Signed-off-by: Ben Chan <benchan@chromium.org>
> Cc: Sage Ahn <syahn@gctsemi.com>
> ---
> drivers/staging/gdm72xx/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig
> index 6905913..8af0dd4 100644
> --- a/drivers/staging/gdm72xx/Kconfig
> +++ b/drivers/staging/gdm72xx/Kconfig
> @@ -4,7 +4,7 @@
>
> menuconfig WIMAX_GDM72XX
> tristate "GCT GDM72xx WiMAX support"
> - depends on NET
> + depends on NET && (USB || MMC)
Alan Stern already told you how this would not solve the problem, why
did you resend it to me again?
And you forgot the "Reported-by:" line above, giving proper credit to
the person who told you about this problem.
Please fix both of them and resend.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 17:48 ` Greg Kroah-Hartman
@ 2013-06-03 18:18 ` Ben Chan
2013-06-03 18:38 ` Ben Chan
0 siblings, 1 reply; 7+ messages in thread
From: Ben Chan @ 2013-06-03 18:18 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: devel, linux-kernel, Sage Ahn
Sorry, I meant to send the revised patch but got the wrong file.
I'll add the Reported-by field.
Thanks,
Ben
On Mon, Jun 3, 2013 at 10:48 AM, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Mon, Jun 03, 2013 at 10:23:45AM -0700, Ben Chan wrote:
>> The gdm72xx driver needs to have either the USB or SDIO implementation
>> enabled to provide useful functionalities, so the driver should depend
>> on either USB or MMC.
>>
>> Signed-off-by: Ben Chan <benchan@chromium.org>
>> Cc: Sage Ahn <syahn@gctsemi.com>
>> ---
>> drivers/staging/gdm72xx/Kconfig | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig
>> index 6905913..8af0dd4 100644
>> --- a/drivers/staging/gdm72xx/Kconfig
>> +++ b/drivers/staging/gdm72xx/Kconfig
>> @@ -4,7 +4,7 @@
>>
>> menuconfig WIMAX_GDM72XX
>> tristate "GCT GDM72xx WiMAX support"
>> - depends on NET
>> + depends on NET && (USB || MMC)
>
> Alan Stern already told you how this would not solve the problem, why
> did you resend it to me again?
>
> And you forgot the "Reported-by:" line above, giving proper credit to
> the person who told you about this problem.
>
> Please fix both of them and resend.
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 17:23 [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC Ben Chan
2013-06-03 17:48 ` Greg Kroah-Hartman
@ 2013-06-03 18:30 ` Greg Kroah-Hartman
2013-06-03 19:08 ` Greg Kroah-Hartman
1 sibling, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2013-06-03 18:30 UTC (permalink / raw)
To: Ben Chan; +Cc: devel, Sage Ahn, linux-kernel
On Mon, Jun 03, 2013 at 10:23:45AM -0700, Ben Chan wrote:
> The gdm72xx driver needs to have either the USB or SDIO implementation
> enabled to provide useful functionalities, so the driver should depend
> on either USB or MMC.
>
> Signed-off-by: Ben Chan <benchan@chromium.org>
> Cc: Sage Ahn <syahn@gctsemi.com>
> ---
> drivers/staging/gdm72xx/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig
> index 6905913..8af0dd4 100644
> --- a/drivers/staging/gdm72xx/Kconfig
> +++ b/drivers/staging/gdm72xx/Kconfig
> @@ -4,7 +4,7 @@
>
> menuconfig WIMAX_GDM72XX
> tristate "GCT GDM72xx WiMAX support"
> - depends on NET
> + depends on NET && (USB || MMC)
Really? Again?
Are you trying to just get me to ignore your patches?
If so, you just did a good job, please take a day or two to relax and
get it right.
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 18:18 ` Ben Chan
@ 2013-06-03 18:38 ` Ben Chan
0 siblings, 0 replies; 7+ messages in thread
From: Ben Chan @ 2013-06-03 18:38 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: devel, linux-kernel, Sage Ahn
Nope... I didn't resend the patch but replied to the thread.
Ben
On Mon, Jun 3, 2013 at 11:18 AM, Ben Chan <benchan@chromium.org> wrote:
> Sorry, I meant to send the revised patch but got the wrong file.
>
> I'll add the Reported-by field.
>
> Thanks,
> Ben
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 18:30 ` Greg Kroah-Hartman
@ 2013-06-03 19:08 ` Greg Kroah-Hartman
2013-06-04 4:52 ` Ben Chan
0 siblings, 1 reply; 7+ messages in thread
From: Greg Kroah-Hartman @ 2013-06-03 19:08 UTC (permalink / raw)
To: Ben Chan; +Cc: devel, Sage Ahn, linux-kernel
On Mon, Jun 03, 2013 at 11:30:45AM -0700, Greg Kroah-Hartman wrote:
> On Mon, Jun 03, 2013 at 10:23:45AM -0700, Ben Chan wrote:
> > The gdm72xx driver needs to have either the USB or SDIO implementation
> > enabled to provide useful functionalities, so the driver should depend
> > on either USB or MMC.
> >
> > Signed-off-by: Ben Chan <benchan@chromium.org>
> > Cc: Sage Ahn <syahn@gctsemi.com>
> > ---
> > drivers/staging/gdm72xx/Kconfig | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/staging/gdm72xx/Kconfig b/drivers/staging/gdm72xx/Kconfig
> > index 6905913..8af0dd4 100644
> > --- a/drivers/staging/gdm72xx/Kconfig
> > +++ b/drivers/staging/gdm72xx/Kconfig
> > @@ -4,7 +4,7 @@
> >
> > menuconfig WIMAX_GDM72XX
> > tristate "GCT GDM72xx WiMAX support"
> > - depends on NET
> > + depends on NET && (USB || MMC)
>
> Really? Again?
>
> Are you trying to just get me to ignore your patches?
>
> If so, you just did a good job, please take a day or two to relax and
> get it right.
Crap, slow mailing list, just decided to spit out the second copy of
this to me, sorry for the rant, I need more coffee.
Or maybe less...
My apologies.
greg k-h
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC
2013-06-03 19:08 ` Greg Kroah-Hartman
@ 2013-06-04 4:52 ` Ben Chan
0 siblings, 0 replies; 7+ messages in thread
From: Ben Chan @ 2013-06-04 4:52 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: devel, Sage Ahn, linux-kernel
No worries. I've attached a revised patch to the original email
thread, which includes Alan.
Thanks again,
Ben
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2013-06-04 4:52 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-03 17:23 [PATCH] staging: gdm72xx: WIMAX_GDM72XX should depend on either USB or MMC Ben Chan
2013-06-03 17:48 ` Greg Kroah-Hartman
2013-06-03 18:18 ` Ben Chan
2013-06-03 18:38 ` Ben Chan
2013-06-03 18:30 ` Greg Kroah-Hartman
2013-06-03 19:08 ` Greg Kroah-Hartman
2013-06-04 4:52 ` Ben Chan
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.