int bus, i;
static const u32 extcfg_regnum = 0x90;
- static const u32 extcfg_enable_mask = 1<<31;
- static const u32 extcfg_start_mask = 0xff<<16;
+ static const u32 extcfg_enable_mask = 1u << 31;
+ static const u32 extcfg_start_mask = 0xffu << 16;
static const int extcfg_start_shift = 16;
- static const u32 extcfg_size_mask = 0x3<<28;
+ static const u32 extcfg_size_mask = 3u << 28;
static const int extcfg_size_shift = 28;
static const int extcfg_sizebus[] = {0xff, 0x7f, 0x3f, 0x1f};
static const u32 extcfg_base_mask[] = {0x7ff8, 0x7ffc, 0x7ffe, 0x7fff};