mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-03 09:04:21 +08:00
net: cosa: add braces {} to all arms of the statement
Braces {} should be used on all arms of this statement. Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c0a963e25d
commit
c8f4b11727
@ -468,11 +468,11 @@ static int cosa_probe(int base, int irq, int dma)
|
||||
}
|
||||
|
||||
/* Test the validity of identification string */
|
||||
if (!strncmp(cosa->id_string, "SRP", 3))
|
||||
if (!strncmp(cosa->id_string, "SRP", 3)) {
|
||||
cosa->type = "srp";
|
||||
else if (!strncmp(cosa->id_string, "COSA", 4))
|
||||
} else if (!strncmp(cosa->id_string, "COSA", 4)) {
|
||||
cosa->type = is_8bit(cosa)? "cosa8": "cosa16";
|
||||
else {
|
||||
} else {
|
||||
/* Print a warning only if we are not autoprobing */
|
||||
#ifndef COSA_ISA_AUTOPROBE
|
||||
pr_info("valid signature not found at 0x%x\n", base);
|
||||
|
Loading…
Reference in New Issue
Block a user