linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* linux-next: m68k/semaphore build failure
@ 2008-05-27 10:10 Stephen Rothwell
  2008-05-27 16:10 ` Geert Uytterhoeven
  0 siblings, 1 reply; 5+ messages in thread
From: Stephen Rothwell @ 2008-05-27 10:10 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: linux-next, Geert Uytterhoeven

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

Hi Willy,

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

drivers/input/keyboard/hil_kbd.c:336: error: 'PCI_VENDOR_ID_HP' undeclared (first use in this function)
drivers/input/keyboard/hil_kbd.c:336: error: (Each undeclared identifier is reported only once
drivers/input/keyboard/hil_kbd.c:336: error: for each function it appears in.)

This is caused by commit fd7c1a9773fd107674216b63a752f21ba6495045 ("Add
missing semaphore.h includes") from the semaphore tree.  That commit adds
a linux/semaphore.h include but removes the linux/pci_ids.h include.

Also this commit has no Signed-off-by.
-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/

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

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

* Re: linux-next: m68k/semaphore build failure
  2008-05-27 10:10 linux-next: m68k/semaphore build failure Stephen Rothwell
@ 2008-05-27 16:10 ` Geert Uytterhoeven
  2008-05-28  6:04   ` Stephen Rothwell
  0 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2008-05-27 16:10 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Matthew Wilcox, linux-next

On Tue, 27 May 2008, Stephen Rothwell wrote:
> Today's linux-next build (m68k multi_defconfig) failed like this:
> 
> drivers/input/keyboard/hil_kbd.c:336: error: 'PCI_VENDOR_ID_HP' undeclared (first use in this function)
> drivers/input/keyboard/hil_kbd.c:336: error: (Each undeclared identifier is reported only once
> drivers/input/keyboard/hil_kbd.c:336: error: for each function it appears in.)
> 
> This is caused by commit fd7c1a9773fd107674216b63a752f21ba6495045 ("Add
> missing semaphore.h includes") from the semaphore tree.  That commit adds
> a linux/semaphore.h include but removes the linux/pci_ids.h include.

Thx!

I'd swear I reported this to Willy the first time it appeared, but according
to my mail logs, I never did...

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

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

* Re: linux-next: m68k/semaphore build failure
  2008-05-27 16:10 ` Geert Uytterhoeven
@ 2008-05-28  6:04   ` Stephen Rothwell
  2008-05-31 17:20     ` Matthew Wilcox
  0 siblings, 1 reply; 5+ messages in thread
From: Stephen Rothwell @ 2008-05-28  6:04 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: Matthew Wilcox, linux-next

On Tue, 27 May 2008 18:10:51 +0200 (CEST) Geert Uytterhoeven <geert@linux-m68k.org> wrote:
>
> On Tue, 27 May 2008, Stephen Rothwell wrote:
> > Today's linux-next build (m68k multi_defconfig) failed like this:
> > 
> > drivers/input/keyboard/hil_kbd.c:336: error: 'PCI_VENDOR_ID_HP' undeclared (first use in this function)
> > drivers/input/keyboard/hil_kbd.c:336: error: (Each undeclared identifier is reported only once
> > drivers/input/keyboard/hil_kbd.c:336: error: for each function it appears in.)
> > 
> > This is caused by commit fd7c1a9773fd107674216b63a752f21ba6495045 ("Add
> > missing semaphore.h includes") from the semaphore tree.  That commit adds
> > a linux/semaphore.h include but removes the linux/pci_ids.h include.
> 
> Thx!
> 
> I'd swear I reported this to Willy the first time it appeared, but according
> to my mail logs, I never did...

I have added the following patch to linux-next for today, but I am
assuming the Willy will fix his semaphore tree shortly.

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

>From 4307d699fe862f594d27fc3e877de5628142aeb7 Mon Sep 17 00:00:00 2001
From: Stephen Rothwell <sfr@canb.auug.org.au>
Date: Wed, 28 May 2008 15:47:53 +1000
Subject: [PATCH] hil_kbd: restore pci_ids.h

This was removed by a semaphore patch (presumable by accident).

Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
 drivers/input/keyboard/hil_kbd.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/input/keyboard/hil_kbd.c b/drivers/input/keyboard/hil_kbd.c
index c0336ff..724f5b4 100644
--- a/drivers/input/keyboard/hil_kbd.c
+++ b/drivers/input/keyboard/hil_kbd.c
@@ -38,6 +38,7 @@
 #include <linux/module.h>
 #include <linux/init.h>
 #include <linux/slab.h>
+#include <linux/pci_ids.h>
 #include <linux/semaphore.h>
 
 #define PREFIX "HIL KEYB: "
-- 
1.5.5.1


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

* Re: linux-next: m68k/semaphore build failure
  2008-05-28  6:04   ` Stephen Rothwell
@ 2008-05-31 17:20     ` Matthew Wilcox
  2008-06-01  2:18       ` Stephen Rothwell
  0 siblings, 1 reply; 5+ messages in thread
From: Matthew Wilcox @ 2008-05-31 17:20 UTC (permalink / raw)
  To: Stephen Rothwell; +Cc: Geert Uytterhoeven, linux-next

On Wed, May 28, 2008 at 04:04:06PM +1000, Stephen Rothwell wrote:
> > I'd swear I reported this to Willy the first time it appeared, but according
> > to my mail logs, I never did...

You did ... I was just slack.

> I have added the following patch to linux-next for today, but I am
> assuming the Willy will fix his semaphore tree shortly.

Fixed now.  Thanks!

-- 
Intel are signing my paycheques ... these opinions are still mine
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours.  We can't possibly take such
a retrograde step."

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

* Re: linux-next: m68k/semaphore build failure
  2008-05-31 17:20     ` Matthew Wilcox
@ 2008-06-01  2:18       ` Stephen Rothwell
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Rothwell @ 2008-06-01  2:18 UTC (permalink / raw)
  To: Matthew Wilcox; +Cc: Geert Uytterhoeven, linux-next

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

Hi Willy,

On Sat, 31 May 2008 11:20:59 -0600 Matthew Wilcox <matthew@wil.cx> wrote:
>
> On Wed, May 28, 2008 at 04:04:06PM +1000, Stephen Rothwell wrote:
> > > I'd swear I reported this to Willy the first time it appeared, but according
> > > to my mail logs, I never did...
> 
> You did ... I was just slack.
> 
> > I have added the following patch to linux-next for today, but I am
> > assuming the Willy will fix his semaphore tree shortly.
> 
> Fixed now.  Thanks!

Great, thanks.

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

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

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

end of thread, other threads:[~2008-06-01  2:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-05-27 10:10 linux-next: m68k/semaphore build failure Stephen Rothwell
2008-05-27 16:10 ` Geert Uytterhoeven
2008-05-28  6:04   ` Stephen Rothwell
2008-05-31 17:20     ` Matthew Wilcox
2008-06-01  2:18       ` Stephen Rothwell

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