@@ -114,15 +114,19 @@ dcb_i2c_parse(struct nouveau_bios *bios, u8 idx, struct dcb_i2c_entry *info)
if (idx == 0) {
info->drive = nv_ro08(bios, ent + 4);
- if (!info->drive) info->drive = 0x3f;
+ if (!info->drive)
+ info->drive = 0x3f;
info->sense = nv_ro08(bios, ent + 5);
- if (!info->sense) info->sense = 0x3e;
+ if (!info->sense)
+ info->sense = 0x3e;
} else
if (idx == 1) {
info->drive = nv_ro08(bios, ent + 6);
- if (!info->drive) info->drive = 0x37;
+ if (!info->drive)
+ info->drive = 0x37;
info->sense = nv_ro08(bios, ent + 7);
- if (!info->sense) info->sense = 0x36;
+ if (!info->sense)
+ info->sense = 0x36;
}
info->type = DCB_I2C_NV04_BIT;