mirror of https://gitee.com/openkylin/linux.git
ice: Fix unused variable build warning
Commit 2fd527b72b
("net: ndo_bridge_setlink: Add extack") added a new
parameter "extack" to ice_bridge_setlink but this parameter isn't used
by the function. This results in a warning: unused parameter ‘extack’
[-Wunused-parameter]. Fix that by adding an "__always_unused" qualifier.
Signed-off-by: Bruce Allan <bruce.w.allan@intel.com>
Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
b71acb0e37
commit
3d50514717
|
@ -3641,7 +3641,8 @@ static int ice_vsi_update_bridge_mode(struct ice_vsi *vsi, u16 bmode)
|
|||
*/
|
||||
static int
|
||||
ice_bridge_setlink(struct net_device *dev, struct nlmsghdr *nlh,
|
||||
u16 __always_unused flags, struct netlink_ext_ack *extack)
|
||||
u16 __always_unused flags,
|
||||
struct netlink_ext_ack __always_unused *extack)
|
||||
{
|
||||
struct ice_netdev_priv *np = netdev_priv(dev);
|
||||
struct ice_pf *pf = np->vsi->back;
|
||||
|
|
Loading…
Reference in New Issue