mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 05:02:12 +00:00
soc: mediatek: pwrap: fix compiler errors
When compiling using sparse, we got the following error: drivers/soc/mediatek/mtk-pmic-wrap.c:686:25: error: dubious one-bit signed bitfield Changing the data type to unsigned fixes this. Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
This commit is contained in:
parent
598f9b2ec4
commit
fb2c1934f3
@ -683,7 +683,7 @@ struct pmic_wrapper_type {
|
||||
u32 int_en_all;
|
||||
u32 spi_w;
|
||||
u32 wdt_src;
|
||||
int has_bridge:1;
|
||||
unsigned int has_bridge:1;
|
||||
int (*init_reg_clock)(struct pmic_wrapper *wrp);
|
||||
int (*init_soc_specific)(struct pmic_wrapper *wrp);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user