Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c2a04c4f0e1b09b58d7279e2facd306c40583ec1
Commit:     c2a04c4f0e1b09b58d7279e2facd306c40583ec1
Parent:     a7da60f41551abb3c520b03d42ec05dd7decfc7f
Author:     Frank Rowand <[EMAIL PROTECTED]>
AuthorDate: Tue Jan 15 14:26:44 2008 -0800
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Jan 22 00:35:23 2008 +0000

    [MIPS] SMTC: Fix build error.
    
    Fix compile warning (which becomes compile error due to -Werror).  Type of
    argument "flags" for spin_lock_irqsave() was incorrect in some functions.
    
    Signed-off-by: Frank Rowand <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 include/asm-mips/smtc_ipi.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/asm-mips/smtc_ipi.h b/include/asm-mips/smtc_ipi.h
index e09131a..8ce5175 100644
--- a/include/asm-mips/smtc_ipi.h
+++ b/include/asm-mips/smtc_ipi.h
@@ -49,7 +49,7 @@ struct smtc_ipi_q {
 
 static inline void smtc_ipi_nq(struct smtc_ipi_q *q, struct smtc_ipi *p)
 {
-       long flags;
+       unsigned long flags;
 
        spin_lock_irqsave(&q->lock, flags);
        if (q->head == NULL)
@@ -98,7 +98,7 @@ static inline struct smtc_ipi *smtc_ipi_dq(struct smtc_ipi_q 
*q)
 
 static inline void smtc_ipi_req(struct smtc_ipi_q *q, struct smtc_ipi *p)
 {
-       long flags;
+       unsigned long flags;
 
        spin_lock_irqsave(&q->lock, flags);
        if (q->head == NULL) {
@@ -114,7 +114,7 @@ static inline void smtc_ipi_req(struct smtc_ipi_q *q, 
struct smtc_ipi *p)
 
 static inline int smtc_ipi_qdepth(struct smtc_ipi_q *q)
 {
-       long flags;
+       unsigned long flags;
        int retval;
 
        spin_lock_irqsave(&q->lock, flags);
-
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