soc/amd/stoneyridge: Remove "else" after a return
File smbus_spd.c has 2 instances of if()/else where the if tests for an error condition and returns just before the "else" statement. These "else" statements are not needed. BUG=b:117648025 TEST=Build and boot grunt. Change-Id: Ie8298773ae455dbb1125420ec65df24f3c65eb44 Signed-off-by: Richard Spiegel <richard.spiegel@silverbackltd.com> Reviewed-on: https://review.coreboot.org/29152 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Martin Roth <martinroth@google.com> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
585210ad58
commit
d46bb6bdf0
|
@ -50,10 +50,9 @@ static int readspd(uint16_t iobase, uint8_t SmbusSlaveAddress,
|
||||||
if (error < 0) {
|
if (error < 0) {
|
||||||
printk(BIOS_ERR, "-------------SPD READ ERROR-----------\n");
|
printk(BIOS_ERR, "-------------SPD READ ERROR-----------\n");
|
||||||
return error;
|
return error;
|
||||||
} else {
|
|
||||||
*pbuf = (char) error;
|
|
||||||
pbuf++;
|
|
||||||
}
|
}
|
||||||
|
*pbuf = (char) error;
|
||||||
|
pbuf++;
|
||||||
|
|
||||||
/* Read the remaining SPD bytes using do_smbus_recv_byte for speed */
|
/* Read the remaining SPD bytes using do_smbus_recv_byte for speed */
|
||||||
for (index = 1 ; index < count ; index++) {
|
for (index = 1 ; index < count ; index++) {
|
||||||
|
@ -61,10 +60,9 @@ static int readspd(uint16_t iobase, uint8_t SmbusSlaveAddress,
|
||||||
if (error < 0) {
|
if (error < 0) {
|
||||||
printk(BIOS_ERR, "-------------SPD READ ERROR-----------\n");
|
printk(BIOS_ERR, "-------------SPD READ ERROR-----------\n");
|
||||||
return error;
|
return error;
|
||||||
} else {
|
|
||||||
*pbuf = (char) error;
|
|
||||||
pbuf++;
|
|
||||||
}
|
}
|
||||||
|
*pbuf = (char) error;
|
||||||
|
pbuf++;
|
||||||
}
|
}
|
||||||
printk(BIOS_SPEW, "\n");
|
printk(BIOS_SPEW, "\n");
|
||||||
printk(BIOS_SPEW, "-------------FINISHED READING SPD-----------\n");
|
printk(BIOS_SPEW, "-------------FINISHED READING SPD-----------\n");
|
||||||
|
|
Loading…
Reference in New Issue