src/drivers: Fix checkpatch warning: no spaces at the start of a line
This excludes files which are mostly spaces, which I felt should be handled separately. Change-Id: I33043a3090e2fc6e9d2fd81e8a5e46fb6cb0aa35 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20731 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
		| @@ -85,7 +85,7 @@ static int ipmi_kcs_send_data_byte(int port, const unsigned char byte) | ||||
| 	if (wait_ibf_timeout(port)) | ||||
| 		return 1; | ||||
|  | ||||
|         status = ipmi_kcs_status(port); | ||||
| 	status = ipmi_kcs_status(port); | ||||
| 	if ((status & IPMI_KCS_OBF) && | ||||
| 	    IPMI_KCS_STATE(status) != IPMI_KCS_STATE_WRITE) { | ||||
| 		printk(BIOS_ERR, "%s: status %02x\n", __func__, status); | ||||
| @@ -106,7 +106,7 @@ static int ipmi_kcs_send_last_data_byte(int port, const unsigned char byte) | ||||
| 	if (wait_ibf_timeout(port)) | ||||
| 		return 1; | ||||
|  | ||||
|         status = ipmi_kcs_status(port); | ||||
| 	status = ipmi_kcs_status(port); | ||||
| 	if ((status & IPMI_KCS_OBF) && | ||||
| 	    IPMI_KCS_STATE(status) != IPMI_KCS_STATE_WRITE) { | ||||
| 		printk(BIOS_ERR, "%s: status %02x\n", __func__, status); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user