* linux-next: build failure after merge of the final tree (ieee1394 tree related)
@ 2010-12-13 4:44 ` Stephen Rothwell
0 siblings, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2010-12-13 4:44 UTC (permalink / raw)
To: Stefan Richter, linux1394-devel; +Cc: linux-next, linux-kernel, Clemens Ladisch
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
Hi all,
After merging the final tree, today's linux-next build (powerpc allyesconfig)
failed like this:
drivers/firewire/ohci.c: In function 'ar_context_release':
drivers/firewire/ohci.c:635: error: implicit declaration of function 'vm_unmap_ram'
drivers/firewire/ohci.c: In function 'ar_context_init':
drivers/firewire/ohci.c:961: error: implicit declaration of function 'vm_map_ram'
Caused by commit 713c11a3fd56c8324b5cd63d02cb270866095ea4 ("firewire:
ohci: Asynchronous Reception rewrite").
I have used the version of the ieee1394 from next-20101210 for today.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread* linux-next: build failure after merge of the final tree (ieee1394 tree related)
@ 2010-12-13 4:44 ` Stephen Rothwell
0 siblings, 0 replies; 3+ messages in thread
From: Stephen Rothwell @ 2010-12-13 4:44 UTC (permalink / raw)
To: Stefan Richter, linux1394-devel; +Cc: linux-next, linux-kernel, Clemens Ladisch
[-- Attachment #1: Type: text/plain, Size: 690 bytes --]
Hi all,
After merging the final tree, today's linux-next build (powerpc allyesconfig)
failed like this:
drivers/firewire/ohci.c: In function 'ar_context_release':
drivers/firewire/ohci.c:635: error: implicit declaration of function 'vm_unmap_ram'
drivers/firewire/ohci.c: In function 'ar_context_init':
drivers/firewire/ohci.c:961: error: implicit declaration of function 'vm_map_ram'
Caused by commit 713c11a3fd56c8324b5cd63d02cb270866095ea4 ("firewire:
ohci: Asynchronous Reception rewrite").
I have used the version of the ieee1394 from next-20101210 for today.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 490 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread* [PATCH] firewire: ohci: fix build failure
2010-12-13 4:44 ` Stephen Rothwell
(?)
@ 2010-12-13 7:23 ` Stefan Richter
-1 siblings, 0 replies; 3+ messages in thread
From: Stefan Richter @ 2010-12-13 7:23 UTC (permalink / raw)
To: linux1394-devel
Cc: Stephen Rothwell, linux-next, linux-kernel, Clemens Ladisch
vm_map_ram() needs <linux/vmalloc.h>.
(And bring the includes back into alphabetical order.)
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
---
drivers/firewire/ohci.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
Index: b/drivers/firewire/ohci.c
===================================================================
--- a/drivers/firewire/ohci.c
+++ b/drivers/firewire/ohci.c
@@ -18,6 +18,7 @@
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#include <linux/bitops.h>
#include <linux/bug.h>
#include <linux/compiler.h>
#include <linux/delay.h>
@@ -40,7 +41,7 @@
#include <linux/spinlock.h>
#include <linux/string.h>
#include <linux/time.h>
-#include <linux/bitops.h>
+#include <linux/vmalloc.h>
#include <asm/byteorder.h>
#include <asm/page.h>
--
Stefan Richter
-=====-==-=- ==-- -==-=
http://arcgraph.de/sr/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-13 7:23 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-13 4:44 linux-next: build failure after merge of the final tree (ieee1394 tree related) Stephen Rothwell
2010-12-13 4:44 ` Stephen Rothwell
2010-12-13 7:23 ` [PATCH] firewire: ohci: fix build failure Stefan Richter
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.