trivial: dell-dock: Correct a left shift error in BIT_CLEAR macro

This commit is contained in:
Mario Limonciello 2019-01-24 10:35:53 -06:00
parent d6e453b0ba
commit 654b583031

View File

@ -40,7 +40,7 @@
#define TBT_MODE_MASK 0x01
#define BIT_SET(x,y) (x |= (1<<y))
#define BIT_CLEAR(x,y) (x &= (~1<<(y)))
#define BIT_CLEAR(x,y) (x &= (~(1<<y)))
typedef enum {
FW_UPDATE_IN_PROGRESS,