linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled
@ 2009-01-10  2:16 Alexander Beregalov
  2009-01-10  5:16 ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Beregalov @ 2009-01-10  2:16 UTC (permalink / raw)
  To: akorolev, linux-mtd, linux-kernel

drivers/built-in.o: In function `lpddr_probe':
drivers/mtd/lpddr/qinfo_probe.c:215:
undefined reference to `lpddr_cmdset'

# CONFIG_MTD_LPDDR is not set
CONFIG_MTD_QINFO_PROBE=y

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

* Re: mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled
  2009-01-10  2:16 mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled Alexander Beregalov
@ 2009-01-10  5:16 ` Randy Dunlap
  2009-01-11 10:03   ` Alexey Korolev
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2009-01-10  5:16 UTC (permalink / raw)
  To: Alexander Beregalov; +Cc: akorolev, linux-mtd, linux-kernel, David Woodhouse

Alexander Beregalov wrote:
> drivers/built-in.o: In function `lpddr_probe':
> drivers/mtd/lpddr/qinfo_probe.c:215:
> undefined reference to `lpddr_cmdset'
> 
> # CONFIG_MTD_LPDDR is not set
> CONFIG_MTD_QINFO_PROBE=y
> --

This patch has been posted, just needs to be merged (hint):
---


Signed-off-by: Alexey Korolev <akorolev@infradead.org>
---
diff --git a/drivers/mtd/lpddr/Kconfig b/drivers/mtd/lpddr/Kconfig
index acd4ea9..5a401d8 100644
--- a/drivers/mtd/lpddr/Kconfig
+++ b/drivers/mtd/lpddr/Kconfig
@@ -12,6 +12,7 @@ config MTD_LPDDR
 	  DDR memories, intended for battery-operated systems.
 
 config MTD_QINFO_PROBE
+	depends on MTD_LPDDR
 	tristate "Detect flash chips by QINFO probe"
 	help
 	    Device Information for LPDDR chips is offered through the Overlay



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

* Re: mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled
  2009-01-10  5:16 ` Randy Dunlap
@ 2009-01-11 10:03   ` Alexey Korolev
  2009-01-11 16:51     ` Randy Dunlap
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Korolev @ 2009-01-11 10:03 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Alexander Beregalov, David Woodhouse, linux-mtd, linux-kernel

Hi Randy,

I've just checked 2.6.29-rc1. It contains LPDDR patches but does not contain this patch. 
Do you know whom I should ask to make this included?

Thanks,
Alexey

> > drivers/built-in.o: In function `lpddr_probe':
> > drivers/mtd/lpddr/qinfo_probe.c:215:
> > undefined reference to `lpddr_cmdset'
> > 
> > # CONFIG_MTD_LPDDR is not set
> > CONFIG_MTD_QINFO_PROBE=y
> > --
> 
> This patch has been posted, just needs to be merged (hint):
> ---
> 
> 
> Signed-off-by: Alexey Korolev <akorolev@infradead.org>
> ---
> diff --git a/drivers/mtd/lpddr/Kconfig b/drivers/mtd/lpddr/Kconfig
> index acd4ea9..5a401d8 100644
> --- a/drivers/mtd/lpddr/Kconfig
> +++ b/drivers/mtd/lpddr/Kconfig
> @@ -12,6 +12,7 @@ config MTD_LPDDR
>  	  DDR memories, intended for battery-operated systems.
>  
>  config MTD_QINFO_PROBE
> +	depends on MTD_LPDDR
>  	tristate "Detect flash chips by QINFO probe"
>  	help
>  	    Device Information for LPDDR chips is offered through the Overlay
> 
> 

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

* Re: mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled
  2009-01-11 10:03   ` Alexey Korolev
@ 2009-01-11 16:51     ` Randy Dunlap
  2009-01-11 18:16       ` Alexey Korolev
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2009-01-11 16:51 UTC (permalink / raw)
  To: Alexey Korolev
  Cc: Alexander Beregalov, David Woodhouse, linux-mtd, linux-kernel

Alexey Korolev wrote:
> Hi Randy,
> 
> I've just checked 2.6.29-rc1. It contains LPDDR patches but does not contain this patch. 
> Do you know whom I should ask to make this included?

MAINTAINERS file:

MEMORY TECHNOLOGY DEVICES (MTD)
P:      David Woodhouse
M:      dwmw2@infradead.org

> Thanks,
> Alexey
> 
>>> drivers/built-in.o: In function `lpddr_probe':
>>> drivers/mtd/lpddr/qinfo_probe.c:215:
>>> undefined reference to `lpddr_cmdset'
>>>
>>> # CONFIG_MTD_LPDDR is not set
>>> CONFIG_MTD_QINFO_PROBE=y
>>> --
>> This patch has been posted, just needs to be merged (hint):
>> ---
>>
>>
>> Signed-off-by: Alexey Korolev <akorolev@infradead.org>
>> ---
>> diff --git a/drivers/mtd/lpddr/Kconfig b/drivers/mtd/lpddr/Kconfig
>> index acd4ea9..5a401d8 100644
>> --- a/drivers/mtd/lpddr/Kconfig
>> +++ b/drivers/mtd/lpddr/Kconfig
>> @@ -12,6 +12,7 @@ config MTD_LPDDR
>>  	  DDR memories, intended for battery-operated systems.
>>  
>>  config MTD_QINFO_PROBE
>> +	depends on MTD_LPDDR
>>  	tristate "Detect flash chips by QINFO probe"
>>  	help
>>  	    Device Information for LPDDR chips is offered through the Overlay
>>
>>


-- 
~Randy

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

* Re: mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled
  2009-01-11 16:51     ` Randy Dunlap
@ 2009-01-11 18:16       ` Alexey Korolev
  0 siblings, 0 replies; 5+ messages in thread
From: Alexey Korolev @ 2009-01-11 18:16 UTC (permalink / raw)
  To: Randy Dunlap, dwmw2; +Cc: linux-mtd, linux-kernel, Alexander Beregalov

Randy,
Yes, it has alreay been merged today.

David,
Thank you very much!

> 
> MAINTAINERS file:
> 
> MEMORY TECHNOLOGY DEVICES (MTD)
> P:      David Woodhouse
> M:      dwmw2@infradead.org
> 
> > Thanks,
> > Alexey
> > 
> >>> drivers/built-in.o: In function `lpddr_probe':
> >>> drivers/mtd/lpddr/qinfo_probe.c:215:
> >>> undefined reference to `lpddr_cmdset'
> >>>
> >>> # CONFIG_MTD_LPDDR is not set
> >>> CONFIG_MTD_QINFO_PROBE=y
> >>> --
> >> This patch has been posted, just needs to be merged (hint):
> >> ---
> >>
> >>
> >> Signed-off-by: Alexey Korolev <akorolev@infradead.org>
> >> ---
> >> diff --git a/drivers/mtd/lpddr/Kconfig b/drivers/mtd/lpddr/Kconfig
> >> index acd4ea9..5a401d8 100644
> >> --- a/drivers/mtd/lpddr/Kconfig
> >> +++ b/drivers/mtd/lpddr/Kconfig
> >> @@ -12,6 +12,7 @@ config MTD_LPDDR
> >>  	  DDR memories, intended for battery-operated systems.
> >>  
> >>  config MTD_QINFO_PROBE
> >> +	depends on MTD_LPDDR
> >>  	tristate "Detect flash chips by QINFO probe"
> >>  	help
> >>  	    Device Information for LPDDR chips is offered through the Overlay
> >>
> >>
> 
> 
> -- 
> ~Randy
> 
> ______________________________________________________
> Linux MTD discussion mailing list
> http://lists.infradead.org/mailman/listinfo/linux-mtd/
> 

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

end of thread, other threads:[~2009-01-11 18:16 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-10  2:16 mtd/lpddr/qinfo_probe.c needs lpddr_cmds to be compiled Alexander Beregalov
2009-01-10  5:16 ` Randy Dunlap
2009-01-11 10:03   ` Alexey Korolev
2009-01-11 16:51     ` Randy Dunlap
2009-01-11 18:16       ` Alexey Korolev

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