diff options
author | Jérôme Pouiller <jerome.pouiller@silabs.com> | 2020-09-07 12:14:58 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-09-13 09:23:01 +0200 |
commit | f751e356858f979b1a8c269242bf1a81443374dc (patch) | |
tree | 7c81afd5351a21cee96cf075fd2557305c58b0ff /drivers/staging | |
parent | 135baf19e56d3df560052036f642863858059112 (diff) |
staging: wfx: drop useless enum hif_beacon
Enum hif_beacon is not used. Moreover, it is just another definition of
a boolean. Absolutely useless.
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20200907101521.66082-9-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/wfx/hif_api_cmd.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/wfx/hif_api_cmd.h b/drivers/staging/wfx/hif_api_cmd.h index 21cde19cff75..75e8c2a7fdf9 100644 --- a/drivers/staging/wfx/hif_api_cmd.h +++ b/drivers/staging/wfx/hif_api_cmd.h @@ -440,11 +440,6 @@ struct hif_cnf_start { __le32 status; } __packed; -enum hif_beacon { - HIF_BEACON_STOP = 0x0, - HIF_BEACON_START = 0x1 -}; - struct hif_req_beacon_transmit { u8 enable_beaconing; u8 reserved[3]; |