macsec_linux: Make create_transmit_sc() handler use matching arguments
The currently unused conf_offset parameter used a mismatching type (enum vs. unsigned int) compared to the prototype. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
b82fcf06f2
commit
b3f99d45d5
1 changed files with 1 additions and 1 deletions
|
@ -1009,7 +1009,7 @@ static struct rtnl_link * lookup_sc(struct nl_cache *cache, int parent, u64 sci)
|
|||
*/
|
||||
static int macsec_drv_create_transmit_sc(
|
||||
void *priv, struct transmit_sc *sc,
|
||||
enum confidentiality_offset conf_offset)
|
||||
unsigned int conf_offset)
|
||||
{
|
||||
struct macsec_drv_data *drv = priv;
|
||||
struct rtnl_link *link;
|
||||
|
|
Loading…
Reference in a new issue