linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: mmc tree build failure
@ 2008-12-04  4:28 Stephen Rothwell
  2008-12-04  4:54 ` Philip Langdale
  2008-12-09  3:42 ` Stephen Rothwell
  0 siblings, 2 replies; 7+ messages in thread
From: Stephen Rothwell @ 2008-12-04  4:28 UTC (permalink / raw)
  To: Pierre Ossman; +Cc: linux-next, Rafael J. Wysocki, Greg KH, Philip Langdale

[-- Attachment #1: Type: text/plain, Size: 1412 bytes --]

Hi Pierre,

Today's linux-next build (x86_64 allmodconfig) failed like this:

drivers/mmc/host/ricoh_mmc.c:235: error: variable 'ricoh_mmc_pm_ext_opts' has initializer but incomplete type
drivers/mmc/host/ricoh_mmc.c:236: error: unknown field 'suspend_noirq' specified in initializer
drivers/mmc/host/ricoh_mmc.c:236: warning: excess elements in struct initializer
drivers/mmc/host/ricoh_mmc.c:236: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
drivers/mmc/host/ricoh_mmc.c:237: error: unknown field 'resume_noirq' specified in initializer
drivers/mmc/host/ricoh_mmc.c:237: warning: excess elements in struct initializer
drivers/mmc/host/ricoh_mmc.c:237: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
drivers/mmc/host/ricoh_mmc.c:245: error: unknown field 'pm' specified in initializer
drivers/mmc/host/ricoh_mmc.c:245: warning: initialization from incompatible pointer type

Due to commit 75766a3cee0a1eb2f373e8112a73e69262e7831a ("ricoh_mmc: Use
suspend/resume_noirq") clashing with commit
6e674b2ed59695a90166d9500aa2696a495696e7 ("PM: Simplify the new
suspend/hibernation framework for devices") from the driver-core tree.

I am not sure what to do with this, so I have reverted the mmc tree
commit above for today.  Hopefully, Rafael can suggest a fix.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: linux-next: mmc tree build failure
  2008-12-04  4:28 linux-next: mmc tree build failure Stephen Rothwell
@ 2008-12-04  4:54 ` Philip Langdale
  2008-12-09  3:42 ` Stephen Rothwell
  1 sibling, 0 replies; 7+ messages in thread
From: Philip Langdale @ 2008-12-04  4:54 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Pierre Ossman, linux-next, Rafael J. Wysocki, Greg KH

Stephen Rothwell wrote:
> Hi Pierre,
> 
> Today's linux-next build (x86_64 allmodconfig) failed like this:
> 
> drivers/mmc/host/ricoh_mmc.c:235: error: variable 'ricoh_mmc_pm_ext_opts' has initializer but incomplete type
> drivers/mmc/host/ricoh_mmc.c:236: error: unknown field 'suspend_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:237: error: unknown field 'resume_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:245: error: unknown field 'pm' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:245: warning: initialization from incompatible pointer type
> 
> Due to commit 75766a3cee0a1eb2f373e8112a73e69262e7831a ("ricoh_mmc: Use
> suspend/resume_noirq") clashing with commit
> 6e674b2ed59695a90166d9500aa2696a495696e7 ("PM: Simplify the new
> suspend/hibernation framework for devices") from the driver-core tree.
> 
> I am not sure what to do with this, so I have reverted the mmc tree
> commit above for today.  Hopefully, Rafael can suggest a fix.

Pierre doesn't have Rafael's change in his tree yet.

I posted an updated version of my change here:

http://lkml.org/lkml/2008/12/3/219

--phil

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

* Re: linux-next: mmc tree build failure
  2008-12-04  4:28 linux-next: mmc tree build failure Stephen Rothwell
  2008-12-04  4:54 ` Philip Langdale
@ 2008-12-09  3:42 ` Stephen Rothwell
  2008-12-09  6:47   ` Pierre Ossman
  1 sibling, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2008-12-09  3:42 UTC (permalink / raw)
  To: Pierre Ossman; +Cc: linux-next, Rafael J. Wysocki, Greg KH, Philip Langdale

[-- Attachment #1: Type: text/plain, Size: 1615 bytes --]

Hi Pierre,

On Thu, 4 Dec 2008 15:28:29 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> Today's linux-next build (x86_64 allmodconfig) failed like this:
> 
> drivers/mmc/host/ricoh_mmc.c:235: error: variable 'ricoh_mmc_pm_ext_opts' has initializer but incomplete type
> drivers/mmc/host/ricoh_mmc.c:236: error: unknown field 'suspend_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:236: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:237: error: unknown field 'resume_noirq' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: excess elements in struct initializer
> drivers/mmc/host/ricoh_mmc.c:237: warning: (near initialization for 'ricoh_mmc_pm_ext_opts')
> drivers/mmc/host/ricoh_mmc.c:245: error: unknown field 'pm' specified in initializer
> drivers/mmc/host/ricoh_mmc.c:245: warning: initialization from incompatible pointer type
> 
> Due to commit 75766a3cee0a1eb2f373e8112a73e69262e7831a ("ricoh_mmc: Use
> suspend/resume_noirq") clashing with commit
> 6e674b2ed59695a90166d9500aa2696a495696e7 ("PM: Simplify the new
> suspend/hibernation framework for devices") from the driver-core tree.
> 
> I am not sure what to do with this, so I have reverted the mmc tree
> commit above for today.  Hopefully, Rafael can suggest a fix.

Since I am still getting this error, I have dropped the mmc tree for
today.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: linux-next: mmc tree build failure
  2008-12-09  3:42 ` Stephen Rothwell
@ 2008-12-09  6:47   ` Pierre Ossman
  2008-12-09  7:16     ` Stephen Rothwell
  0 siblings, 1 reply; 7+ messages in thread
From: Pierre Ossman @ 2008-12-09  6:47 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, Rafael J. Wysocki, Greg KH, Philip Langdale

[-- Attachment #1: Type: text/plain, Size: 1147 bytes --]

On Tue, 9 Dec 2008 14:42:44 +1100
Stephen Rothwell <sfr@canb.auug.org.au> wrote:

> Hi Pierre,
> 
> On Thu, 4 Dec 2008 15:28:29 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> > 
> > Due to commit 75766a3cee0a1eb2f373e8112a73e69262e7831a ("ricoh_mmc: Use
> > suspend/resume_noirq") clashing with commit
> > 6e674b2ed59695a90166d9500aa2696a495696e7 ("PM: Simplify the new
> > suspend/hibernation framework for devices") from the driver-core tree.
> > 
> > I am not sure what to do with this, so I have reverted the mmc tree
> > commit above for today.  Hopefully, Rafael can suggest a fix.
> 
> Since I am still getting this error, I have dropped the mmc tree for
> today.

Sorry about that. I got side-tracked and forgot to push the fixed tree.
It should be up now.

Rgds
-- 
     -- Pierre Ossman

  Linux kernel, MMC maintainer        http://www.kernel.org
  rdesktop, core developer          http://www.rdesktop.org

  WARNING: This correspondence is being monitored by the
  Swedish government. Make sure your server uses encryption
  for SMTP traffic and consider using PGP for end-to-end
  encryption.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: linux-next: mmc tree build failure
  2008-12-09  6:47   ` Pierre Ossman
@ 2008-12-09  7:16     ` Stephen Rothwell
  0 siblings, 0 replies; 7+ messages in thread
From: Stephen Rothwell @ 2008-12-09  7:16 UTC (permalink / raw)
  To: Pierre Ossman; +Cc: linux-next, Rafael J. Wysocki, Greg KH, Philip Langdale

[-- Attachment #1: Type: text/plain, Size: 358 bytes --]

Hi Pierre,

On Tue, 9 Dec 2008 07:47:51 +0100 Pierre Ossman <drzeus-list@drzeus.cx> wrote:
>
> Sorry about that. I got side-tracked and forgot to push the fixed tree.
> It should be up now.

It happens.  I will include it tomorrow.

Thanks.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* linux-next: mmc tree build failure
@ 2009-06-04  2:04 Stephen Rothwell
  2009-06-04  5:39 ` Pierre Ossman
  0 siblings, 1 reply; 7+ messages in thread
From: Stephen Rothwell @ 2009-06-04  2:04 UTC (permalink / raw)
  To: Pierre Ossman
  Cc: linux-next, linux-kernel, "Michał Mirosław"

[-- Attachment #1: Type: text/plain, Size: 521 bytes --]

Hi Pierre,

Today's linux-next build (powerpc_ppc64_defconfig) failed like this:

drivers/misc/Kconfig:238: can't open file "drivers/misc/cb710/Kconfig"

Caused by commit f8d1918a2e7adbfdde0efc1a9a22cca3d5c5cae9 ("mmc: Driver
for CB710/720 memory card reader (MMC part)").

I have used the version of the mmc tree from next-20090603 for today.

Please build test what you are submitting to linux-next.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

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

* Re: linux-next: mmc tree build failure
  2009-06-04  2:04 Stephen Rothwell
@ 2009-06-04  5:39 ` Pierre Ossman
  0 siblings, 0 replies; 7+ messages in thread
From: Pierre Ossman @ 2009-06-04  5:39 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: linux-next, linux-kernel, Michał Mirosław

[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]

On Thu, 4 Jun 2009 12:04:35 +1000
Stephen Rothwell <sfr@canb.auug.org.au> wrote:

> Hi Pierre,
> 
> Today's linux-next build (powerpc_ppc64_defconfig) failed like this:
> 
> drivers/misc/Kconfig:238: can't open file "drivers/misc/cb710/Kconfig"
> 
> Caused by commit f8d1918a2e7adbfdde0efc1a9a22cca3d5c5cae9 ("mmc: Driver
> for CB710/720 memory card reader (MMC part)").
> 
> I have used the version of the mmc tree from next-20090603 for today.
> 
> Please build test what you are submitting to linux-next.

Sorry, it seems I had some files in my working that weren't properly
added. :/

Rgds
-- 
     -- Pierre Ossman

  Linux kernel, MMC maintainer        http://www.kernel.org
  rdesktop, core developer          http://www.rdesktop.org
  TigerVNC, core developer          http://www.tigervnc.org

  WARNING: This correspondence is being monitored by the
  Swedish government. Make sure your server uses encryption
  for SMTP traffic and consider using PGP for end-to-end
  encryption.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

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

end of thread, other threads:[~2009-06-04  5:39 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-04  4:28 linux-next: mmc tree build failure Stephen Rothwell
2008-12-04  4:54 ` Philip Langdale
2008-12-09  3:42 ` Stephen Rothwell
2008-12-09  6:47   ` Pierre Ossman
2008-12-09  7:16     ` Stephen Rothwell
  -- strict thread matches above, loose matches on Subject: below --
2009-06-04  2:04 Stephen Rothwell
2009-06-04  5:39 ` Pierre Ossman

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