diff options
| author | Anirudh Venkataramanan <[email protected]> | 2019-04-16 10:34:59 -0700 |
|---|---|---|
| committer | Jeff Kirsher <[email protected]> | 2019-05-30 10:45:02 -0700 |
| commit | 49c6e41b0d1fa9d14b1c20c71eb85f8f1dd12518 (patch) | |
| tree | 7faa6928451d0c7b6d7400ffeb21212138367b65 | |
| parent | 62f4dafc182f34c0e889aeab543ecacc47582c1a (diff) | |
ice: Move define for ICE_AQC_DRIVER_UNLOADING
The define describing the bits for the struct field should be below
the field itself.
Signed-off-by: Anirudh Venkataramanan <[email protected]>
Tested-by: Andrew Bowers <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/intel/ice/ice_adminq_cmd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h index b1efe55e4d7e..7a9da5320e96 100644 --- a/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h +++ b/drivers/net/ethernet/intel/ice/ice_adminq_cmd.h @@ -35,8 +35,8 @@ struct ice_aqc_get_ver { /* Queue Shutdown (direct 0x0003) */ struct ice_aqc_q_shutdown { -#define ICE_AQC_DRIVER_UNLOADING BIT(0) __le32 driver_unloading; +#define ICE_AQC_DRIVER_UNLOADING BIT(0) u8 reserved[12]; }; |