diff options
author | Jesse Brandeburg <[email protected]> | 2014-03-06 09:00:01 +0000 |
---|---|---|
committer | Jeff Kirsher <[email protected]> | 2014-03-28 06:54:00 -0700 |
commit | c5503603430bb255f67f518466fd79e924aabe31 (patch) | |
tree | 780e601172e7b3663d69f62b1c830b7b9ffd623e | |
parent | 35a91fdd52cc3890764ed429d7aed816aa54f65f (diff) |
i40evf: remove double space after return
There were two spaces between return and the value, we only need one.
Change-ID: Iaa42c33f50d8d149cdf1a4c9c1902295bfd991c4
Signed-off-by: Jesse Brandeburg <[email protected]>
Acked-by: Shannon Nelson <[email protected]>
Signed-off-by: Kevin Scott <[email protected]>
Signed-off-by: Catherine Sullivan <[email protected]>
Tested-by: Kavindya Deegala <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
-rw-r--r-- | drivers/net/ethernet/intel/i40evf/i40e_prototype.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40evf/i40e_prototype.h b/drivers/net/ethernet/intel/i40evf/i40e_prototype.h index 862fcdf52675..97ab8c2b76f8 100644 --- a/drivers/net/ethernet/intel/i40evf/i40e_prototype.h +++ b/drivers/net/ethernet/intel/i40evf/i40e_prototype.h @@ -67,7 +67,7 @@ extern struct i40e_rx_ptype_decoded i40evf_ptype_lookup[]; static inline struct i40e_rx_ptype_decoded decode_rx_desc_ptype(u8 ptype) { - return i40evf_ptype_lookup[ptype]; + return i40evf_ptype_lookup[ptype]; } /* prototype for functions used for SW locks */ |