linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] uvesafb: select connector in Kconfig
@ 2007-08-25  8:59 Michal Januszewski
  2007-08-25 15:23 ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Michal Januszewski @ 2007-08-25  8:59 UTC (permalink / raw)
  To: linux-fbdev-devel; +Cc: linux-kernel

Make uvesafb select connector instead of depending on it being already selected.

Signed-off-by: Michal Januszewski <spock@gentoo.org>
---
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index f1cc899..e152eed 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -594,7 +594,8 @@ config FB_TGA
 
 config FB_UVESA
 	tristate "Userspace VESA VGA graphics support"
-	depends on FB && CONNECTOR
+	depends on FB
+	select CONNECTOR
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

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

* Re: [PATCH] uvesafb: select connector in Kconfig
  2007-08-25  8:59 [PATCH] uvesafb: select connector in Kconfig Michal Januszewski
@ 2007-08-25 15:23 ` Randy Dunlap
  2007-08-26  9:35   ` Michal Januszewski
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2007-08-25 15:23 UTC (permalink / raw)
  Cc: Michal Januszewski, linux-fbdev-devel, linux-kernel

On Sat, 25 Aug 2007 10:59:31 +0200 Michal Januszewski wrote:

> Make uvesafb select connector instead of depending on it being already selected.
> 
> Signed-off-by: Michal Januszewski <spock@gentoo.org>
> ---
> diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
> index f1cc899..e152eed 100644
> --- a/drivers/video/Kconfig
> +++ b/drivers/video/Kconfig
> @@ -594,7 +594,8 @@ config FB_TGA
>  
>  config FB_UVESA
>  	tristate "Userspace VESA VGA graphics support"
> -	depends on FB && CONNECTOR
> +	depends on FB
> +	select CONNECTOR
>  	select FB_CFB_FILLRECT
>  	select FB_CFB_COPYAREA
>  	select FB_CFB_IMAGEBLIT

There are 2 problems with this.

a.  CONNECTOR depends on NET, but select won't enable NET, so if
NET is not enabled otherwise, CONNECTOR still won't build.
This is a longstanding select/kconfig issue.

b.  CONNECTOR depends on NET, so if select did follow the depends
chain and enable NET, it would be enabling the networking subsystem,
which is something that should not be done quietly.

select should only be used for enabling small library-like code
(if even then).  Avoid it whenever possible.


---
~Randy
*** Remember to use Documentation/SubmitChecklist when testing your code ***

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

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

* Re: [PATCH] uvesafb: select connector in Kconfig
  2007-08-25 15:23 ` Randy Dunlap
@ 2007-08-26  9:35   ` Michal Januszewski
  0 siblings, 0 replies; 3+ messages in thread
From: Michal Januszewski @ 2007-08-26  9:35 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-fbdev-devel, linux-kernel

On Sat, Aug 25, 2007 at 08:23:41AM -0700, Randy Dunlap wrote:

> There are 2 problems with this.
> 
> a.  CONNECTOR depends on NET, but select won't enable NET, so if
> NET is not enabled otherwise, CONNECTOR still won't build.
> This is a longstanding select/kconfig issue.
> 
> b.  CONNECTOR depends on NET, so if select did follow the depends
> chain and enable NET, it would be enabling the networking subsystem,
> which is something that should not be done quietly.
> 
> select should only be used for enabling small library-like code
> (if even then).  Avoid it whenever possible.

OK, thanks for pointing this out.  Let's keep the original dependency
on CONNECTOR then.

Best regards,
Michal

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

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

end of thread, other threads:[~2007-08-26  9:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-25  8:59 [PATCH] uvesafb: select connector in Kconfig Michal Januszewski
2007-08-25 15:23 ` Randy Dunlap
2007-08-26  9:35   ` Michal Januszewski

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