From f7bb25e391ea43e0afeaad50cd14dcaf522f3810 Mon Sep 17 00:00:00 2001 From: Mike Nicholson Date: Wed, 12 Dec 2018 16:48:48 -0600 Subject: Get rid of Allman style braces to match file --- io-module/mts-io.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'io-module') diff --git a/io-module/mts-io.c b/io-module/mts-io.c index 64886a0..5ffbf0c 100644 --- a/io-module/mts-io.c +++ b/io-module/mts-io.c @@ -579,13 +579,10 @@ mts_id_eeprom_load(void) /* Attempt to load the mts-io driver */ if((ret = request_firmware(&fw, "mts_eeprom.bin", &mts_io_platform_device->dev)) == 0) { - if(fw->size == sizeof(id_eeprom)) - { + if(fw->size == sizeof(id_eeprom)) { memcpy(&id_eeprom, fw->data, sizeof(id_eeprom)); log_info("Platform EEPROM contents loaded"); - } - else - { + } else { log_error("Invalid platform EEPROM length (%d)", fw->size); } -- cgit v1.2.3