提交 c2a04c4f 编写于 作者: F Frank Rowand 提交者: Ralf Baechle

[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: NFrank Rowand <frank.rowand@am.sony.com>
Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
上级 a7da60f4
...@@ -49,7 +49,7 @@ struct smtc_ipi_q { ...@@ -49,7 +49,7 @@ struct smtc_ipi_q {
static inline void smtc_ipi_nq(struct smtc_ipi_q *q, struct smtc_ipi *p) 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); spin_lock_irqsave(&q->lock, flags);
if (q->head == NULL) if (q->head == NULL)
...@@ -98,7 +98,7 @@ static inline struct smtc_ipi *smtc_ipi_dq(struct smtc_ipi_q *q) ...@@ -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) 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); spin_lock_irqsave(&q->lock, flags);
if (q->head == NULL) { if (q->head == NULL) {
...@@ -114,7 +114,7 @@ static inline void smtc_ipi_req(struct smtc_ipi_q *q, struct smtc_ipi *p) ...@@ -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) static inline int smtc_ipi_qdepth(struct smtc_ipi_q *q)
{ {
long flags; unsigned long flags;
int retval; int retval;
spin_lock_irqsave(&q->lock, flags); spin_lock_irqsave(&q->lock, flags);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册