Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390: remove unneeded semicolon

Remove unneeded semicolon.

The semantic patch that detects this change is available
at scripts/coccinelle/misc/semicolon.cocci.

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Peter Senna Tschudin and committed by
Martin Schwidefsky
3b974874 3a3814c2

+5 -5
+3 -3
drivers/s390/block/dasd_alias.c
··· 58 58 && !strncmp(pos->uid.serial, uid->serial, 59 59 sizeof(uid->serial))) 60 60 return pos; 61 - }; 61 + } 62 62 return NULL; 63 63 } 64 64 ··· 69 69 list_for_each_entry(pos, &server->lculist, lcu) { 70 70 if (pos->uid.ssid == uid->ssid) 71 71 return pos; 72 - }; 72 + } 73 73 return NULL; 74 74 } 75 75 ··· 97 97 if (pos->uid.base_unit_addr == search_unit_addr && 98 98 !strncmp(pos->uid.vduit, uid->vduit, sizeof(uid->vduit))) 99 99 return pos; 100 - }; 100 + } 101 101 return NULL; 102 102 } 103 103
+1 -1
drivers/s390/char/monreader.c
··· 95 95 if (ascii_name[i] == '\0') 96 96 break; 97 97 ebcdic_name[i] = toupper(ascii_name[i]); 98 - }; 98 + } 99 99 for (; i < 8; i++) 100 100 ebcdic_name[i] = ' '; 101 101 ASCEBC(ebcdic_name, 8);
+1 -1
drivers/s390/scsi/zfcp_fsf.c
··· 204 204 break; 205 205 case FSF_STATUS_READ_SUB_FIRMWARE_UPDATE: 206 206 zfcp_fsf_link_down_info_eval(req, NULL); 207 - }; 207 + } 208 208 } 209 209 210 210 static void zfcp_fsf_status_read_handler(struct zfcp_fsf_req *req)