mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-01 03:11:59 +00:00
qed: fix old-style function definition
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: fc831825f9
("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>
This commit is contained in:
parent
c2ed1880fd
commit
7729bad4fd
1 changed files with 1 additions and 1 deletions
|
@ -1265,7 +1265,7 @@ static const struct qed_iscsi_ops qed_iscsi_ops_pass = {
|
||||||
.get_stats = &qed_iscsi_stats,
|
.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;
|
return &qed_iscsi_ops_pass;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue