mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-21 13:14:17 +00:00
trivial: dell-dock: Correct a left shift error in BIT_CLEAR
macro
This commit is contained in:
parent
d6e453b0ba
commit
654b583031
@ -40,7 +40,7 @@
|
|||||||
#define TBT_MODE_MASK 0x01
|
#define TBT_MODE_MASK 0x01
|
||||||
|
|
||||||
#define BIT_SET(x,y) (x |= (1<<y))
|
#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 {
|
typedef enum {
|
||||||
FW_UPDATE_IN_PROGRESS,
|
FW_UPDATE_IN_PROGRESS,
|
||||||
|
Loading…
Reference in New Issue
Block a user