mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 06:05:06 +00:00
i40e: Change unmatched function types
Change of function declaration from int to u64 due to return type mismatch (u64). Signed-off-by: Grzegorz Siwik <grzegorz.siwik@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
1d96340196
commit
9b0732d9ed
1 changed files with 4 additions and 4 deletions
|
@ -2370,7 +2370,7 @@ static int i40e_get_ts_info(struct net_device *dev,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int i40e_link_test(struct net_device *netdev, u64 *data)
|
||||
static u64 i40e_link_test(struct net_device *netdev, u64 *data)
|
||||
{
|
||||
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
||||
struct i40e_pf *pf = np->vsi->back;
|
||||
|
@ -2393,7 +2393,7 @@ static int i40e_link_test(struct net_device *netdev, u64 *data)
|
|||
return *data;
|
||||
}
|
||||
|
||||
static int i40e_reg_test(struct net_device *netdev, u64 *data)
|
||||
static u64 i40e_reg_test(struct net_device *netdev, u64 *data)
|
||||
{
|
||||
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
||||
struct i40e_pf *pf = np->vsi->back;
|
||||
|
@ -2404,7 +2404,7 @@ static int i40e_reg_test(struct net_device *netdev, u64 *data)
|
|||
return *data;
|
||||
}
|
||||
|
||||
static int i40e_eeprom_test(struct net_device *netdev, u64 *data)
|
||||
static u64 i40e_eeprom_test(struct net_device *netdev, u64 *data)
|
||||
{
|
||||
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
||||
struct i40e_pf *pf = np->vsi->back;
|
||||
|
@ -2418,7 +2418,7 @@ static int i40e_eeprom_test(struct net_device *netdev, u64 *data)
|
|||
return *data;
|
||||
}
|
||||
|
||||
static int i40e_intr_test(struct net_device *netdev, u64 *data)
|
||||
static u64 i40e_intr_test(struct net_device *netdev, u64 *data)
|
||||
{
|
||||
struct i40e_netdev_priv *np = netdev_priv(netdev);
|
||||
struct i40e_pf *pf = np->vsi->back;
|
||||
|
|
Loading…
Add table
Reference in a new issue