qed: fix old-style function definition
authorArnd Bergmann <arnd@arndb.de>
Fri, 16 Dec 2016 08:47:41 +0000 (09:47 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sun, 18 Dec 2016 02:37:41 +0000 (21:37 -0500)
The newly added file causes a harmless warning, with "make W=1":

drivers/net/ethernet/qlogic/qed/qed_iscsi.c: In function 'qed_get_iscsi_ops':
drivers/net/ethernet/qlogic/qed/qed_iscsi.c:1268:29: warning: old-style function definition [-Wold-style-definition]

This makes it a proper prototype.

Fixes: fc831825f99e ("qed: Add support for hardware offloaded iSCSI.")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qed/qed_iscsi.c

index 00efb1c4c57e842f653fb6dc36a314a894dc1770..17a70122df05c93bec01f13dc48e3924b4868acf 100644 (file)
@@ -1265,7 +1265,7 @@ static const struct qed_iscsi_ops qed_iscsi_ops_pass = {
        .get_stats = &qed_iscsi_stats,
 };
 
-const struct qed_iscsi_ops *qed_get_iscsi_ops()
+const struct qed_iscsi_ops *qed_get_iscsi_ops(void)
 {
        return &qed_iscsi_ops_pass;
 }