public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Jason Wessel <jason.wessel@windriver.com>
To: Yinghai Lu <yinghai@kernel.org>
Cc: gregkh@suse.de, linux-usb@vger.kernel.org,
	linux-kernel@vger.kernel.org, Ingo Molnar <mingo@elte.hu>,
	Andrew Morton <akpm@linux-foundation.org>,
	"Eric W. Biederman" <ebiederm@xmission.com>
Subject: Re: [PATCH 01/10] ehci early_printk: split ehci debug driver from early_printk.c
Date: Mon, 20 Jul 2009 21:02:00 -0500	[thread overview]
Message-ID: <4A652198.3030200@windriver.com> (raw)
In-Reply-To: <4A651FCB.6080704@windriver.com>

Jason Wessel wrote:
> Yinghai Lu wrote:
>   
>> Jason Wessel wrote:
>>   
>>     
>>> Move the dbgp early printk driver in advance of refactoring and adding
>>> new code, so the changes to this code are tracked separately from the
>>> move of the code.
>>>
>>> The drivers/usb/early directory will be the location of the current
>>> and future early usb code for driving usb devices prior initializing
>>> the standard interrupt driven USB drivers.
>>>
>>> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
>>> Cc: Greg KH <gregkh@suse.de>
>>> Cc: Ingo Molnar <mingo@elte.hu>
>>> Cc: Andrew Morton <akpm@linux-foundation.org>
>>> Cc: Yinghai Lu <yinghai@kernel.org>
>>> Cc: "Eric W. Biederman" <ebiederm@xmission.com>
>>> ---
>>>  arch/x86/kernel/early_printk.c |  715 ---------------------------------------
>>>  drivers/usb/Makefile           |    1 +
>>>  drivers/usb/early/Makefile     |    5 +
>>>  drivers/usb/early/ehci-dbgp.c  |  723 ++++++++++++++++++++++++++++++++++++++++
>>>  include/linux/usb/ehci_def.h   |    6 +
>>>  5 files changed, 735 insertions(+), 715 deletions(-)
>>>  create mode 100644 drivers/usb/early/Makefile
>>>  create mode 100644 drivers/usb/early/ehci-dbgp.c
>>>     
>>>       
>> before this patch, we could use dbgp without compiling USB susbsystem in...
>>
>>   
>>     
>
> And you shouldn't need it today.  You pointed out an error in the patch
> which I will correct.  The drivers/Makefile needs to be changed, instead
> of the drivers/usb/Makefile.
>
> The dbgp code was changed in the patch series such that it works with or
> with out the usb subsystem and with or without the earlyconsole=keep,...
>
> All the code in the drivers/usb/early would work this way as well.  As
> an example, I have an experimental UHCI serial driver that can be used
> via the earlyprintk.
>
>
>   
So I checked into this further because I was curious how all the tests
passed. 

The drivers/usb/Makefile is read because of the line in drivers/Makefile

     67 obj-$(CONFIG_PCI)               += usb/

That of course will cause the drivers/usb/early/Makefile to get read. 
This explains why all the testing passed.  For now it might be ok, but
it will have to get changed to compile the dbgp driver when/if the dbgp
gets changed to work with a non-pci EHCI controller.

Jason.


  reply	other threads:[~2009-07-21  2:03 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-20 20:06 [PATCH 0/10] x86: EHCI and earlyprintk= improvements Jason Wessel
2009-07-20 20:06 ` [PATCH 01/10] ehci early_printk: split ehci debug driver from early_printk.c Jason Wessel
2009-07-20 20:06   ` [PATCH 02/10] usb,early_printk: insert cr prior to nl as needed Jason Wessel
2009-07-20 20:06     ` [PATCH 03/10] ehci-dbgp: Execute early BIOS hand off Jason Wessel
2009-07-20 20:06       ` [PATCH 04/10] usb,early_printk: EHCI debug controller initialization delays Jason Wessel
2009-07-20 20:06         ` [PATCH 05/10] printk,early_printk,console: Allow more than one early console Jason Wessel
2009-07-20 20:06           ` [PATCH 06/10] ehci-dbgp: stability improvements and external re-init Jason Wessel
2009-07-20 20:06             ` [PATCH 07/10] ehci-dbgp,ehci: Allow early or late use of the dbgp device Jason Wessel
2009-07-20 20:06               ` [PATCH 08/10] ehci-dbgp: errata for EHCI debug controller initialization Jason Wessel
2009-07-20 20:06                 ` [PATCH 09/10] ehci-dbgp: errata for EHCI debug/host controller synchronization Jason Wessel
2009-07-20 20:06                   ` [PATCH 10/10] ehci-dbgp,documentation: Documentation updates for ehci-dbgp Jason Wessel
2009-07-20 21:25               ` [PATCH 07/10] ehci-dbgp,ehci: Allow early or late use of the dbgp device Alan Stern
2009-07-20 21:38                 ` Jason Wessel
2009-07-21  7:47                   ` Jason Wessel
2009-07-21 14:34                     ` Alan Stern
2009-07-21  0:10   ` [PATCH 01/10] ehci early_printk: split ehci debug driver from early_printk.c Yinghai Lu
2009-07-21  1:54     ` Jason Wessel
2009-07-21  2:02       ` Jason Wessel [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-07-31 15:07 [PATCH 0/10] x86: EHCI and earlyprintk= improvements (Round 2) Jason Wessel
2009-07-31 15:07 ` [PATCH 01/10] ehci early_printk: split ehci debug driver from early_printk.c Jason Wessel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4A652198.3030200@windriver.com \
    --to=jason.wessel@windriver.com \
    --cc=akpm@linux-foundation.org \
    --cc=ebiederm@xmission.com \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=yinghai@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox