···124124 * The bus width is encoded into the register as 0 for 8 bits,125125 * and 1 for 16 bits, so we do the necessary conversion here.126126 */127127- if (r->bus_width == 8)127127+ if (r->bus_width == 8) {128128 r->bus_width = 0;129129- else if (r->bus_width == 16)129129+ } else if (r->bus_width == 16) {130130 r->bus_width = 1;131131- else {131131+ } else {132132 dev_err(devbus->dev, "invalid bus width %d\n", r->bus_width);133133 return -EINVAL;134134 }