Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=5febf1cd79425d3c65d9a66a2299f0d06dc4b1eb
Commit:     5febf1cd79425d3c65d9a66a2299f0d06dc4b1eb
Parent:     15061d60a3be0845dc17a0fbe87610d1cc7106c7
Author:     Kumar Gala <[EMAIL PROTECTED]>
AuthorDate: Wed Jan 23 05:53:47 2008 -0600
Committer:  Kumar Gala <[EMAIL PROTECTED]>
CommitDate: Wed Jan 23 19:35:07 2008 -0600

    [RAPIDIO] Fix compile error and warning
    
    drivers/rapidio/rio.c: In function 'rio_get_asm':
    drivers/rapidio/rio.c:413: error: implicit declaration of function 
'in_interrupt'
    drivers/rapidio/rio.c: In function 'rio_init_mports':
    drivers/rapidio/rio.c:480: warning: format '%8.8lx' expects type 'long 
unsigned int', but argument 2 has type 'resource_size_t'
    drivers/rapidio/rio.c:480: warning: format '%8.8lx' expects type 'long 
unsigned int', but argument 3 has type 'resource_size_t'
    
    Signed-off-by: Kumar Gala <[EMAIL PROTECTED]>
---
 drivers/rapidio/rio.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/rapidio/rio.c b/drivers/rapidio/rio.c
index f644807..80c5f1b 100644
--- a/drivers/rapidio/rio.c
+++ b/drivers/rapidio/rio.c
@@ -23,6 +23,7 @@
 #include <linux/module.h>
 #include <linux/spinlock.h>
 #include <linux/slab.h>
+#include <linux/interrupt.h>
 
 #include "rio.h"
 
@@ -476,8 +477,8 @@ int rio_init_mports(void)
                                        port->iores.end - port->iores.start,
                                        port->name)) {
                        printk(KERN_ERR
-                              "RIO: Error requesting master port region 
%8.8lx-%8.8lx\n",
-                              port->iores.start, port->iores.end - 1);
+                              "RIO: Error requesting master port region 
0x%016llx-0x%016llx\n",
+                              (u64)port->iores.start, (u64)port->iores.end - 
1);
                        rc = -ENOMEM;
                        goto out;
                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to