Commit 2ec34a43 authored by Ioana Radulescu's avatar Ioana Radulescu Committed by Greg Kroah-Hartman

staging: fsl-dpaa2/eth: Use named arguments in function definition

Checkpatch complains about unnamed arguments in a function
prototype, so fix it.
Signed-off-by: default avatarIoana Radulescu <ruxandra.radulescu@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3f285135
...@@ -277,10 +277,10 @@ struct dpaa2_eth_fq { ...@@ -277,10 +277,10 @@ struct dpaa2_eth_fq {
struct dpaa2_eth_channel *channel; struct dpaa2_eth_channel *channel;
enum dpaa2_eth_fq_type type; enum dpaa2_eth_fq_type type;
void (*consume)(struct dpaa2_eth_priv *, void (*consume)(struct dpaa2_eth_priv *priv,
struct dpaa2_eth_channel *, struct dpaa2_eth_channel *ch,
const struct dpaa2_fd *, const struct dpaa2_fd *fd,
struct napi_struct *, struct napi_struct *napi,
u16 queue_id); u16 queue_id);
struct dpaa2_eth_fq_stats stats; struct dpaa2_eth_fq_stats stats;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment