diff mbox

[net-next] qede: Fix compilation without QED_RDMA

Message ID 20170621052634.20984-1-Yuval.Mintz@cavium.com
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Mintz, Yuval June 21, 2017, 5:26 a.m. UTC
From: Chad Dupuis <chad.dupuis@cavium.com>

When CONFIG_QED_RDMA isn't defined, we'd hit the following:

 /include/linux/qed/qede_rdma.h:84:19:
 warning: ‘qede_rdma_dev_add’ used but never defined [enabled by default]
 static inline int qede_rdma_dev_add(struct qede_dev *dev);

Fixes: bbfcd1e8e167 ("qed*: Set rdma generic functions prefix")
Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com>
Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com>
---
 include/linux/qed/qede_rdma.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller June 21, 2017, 3:34 p.m. UTC | #1
From: Yuval Mintz <Yuval.Mintz@cavium.com>

Date: Wed, 21 Jun 2017 08:26:34 +0300

> From: Chad Dupuis <chad.dupuis@cavium.com>

> 

> When CONFIG_QED_RDMA isn't defined, we'd hit the following:

> 

>  /include/linux/qed/qede_rdma.h:84:19:

>  warning: ‘qede_rdma_dev_add’ used but never defined [enabled by default]

>  static inline int qede_rdma_dev_add(struct qede_dev *dev);

> 

> Fixes: bbfcd1e8e167 ("qed*: Set rdma generic functions prefix")

> Signed-off-by: Chad Dupuis <chad.dupuis@cavium.com>

> Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com>


Applied.
diff mbox

Patch

diff --git a/include/linux/qed/qede_rdma.h b/include/linux/qed/qede_rdma.h
index 1348a16..9904617 100644
--- a/include/linux/qed/qede_rdma.h
+++ b/include/linux/qed/qede_rdma.h
@@ -81,7 +81,7 @@  void qede_rdma_dev_remove(struct qede_dev *dev);
 void qede_rdma_event_changeaddr(struct qede_dev *edr);
 
 #else
-static inline int qede_rdma_dev_add(struct qede_dev *dev);
+static inline int qede_rdma_dev_add(struct qede_dev *dev)
 {
 	return 0;
 }