You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
trivial: remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
@@ -1212,7 +1212,7 @@ static int ide_find_port_slot(const struct ide_port_info *d)
|
||||
{
|
||||
int idx = -ENOENT;
|
||||
u8 bootable = (d && (d->host_flags & IDE_HFLAG_NON_BOOTABLE)) ? 0 : 1;
|
||||
u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;;
|
||||
u8 i = (d && (d->host_flags & IDE_HFLAG_QD_2ND_PORT)) ? 1 : 0;
|
||||
|
||||
/*
|
||||
* Claim an unassigned slot.
|
||||
|
||||
@@ -170,9 +170,9 @@ static int __init umc8672_init(void)
|
||||
goto out;
|
||||
|
||||
if (umc8672_probe() == 0)
|
||||
return 0;;
|
||||
return 0;
|
||||
out:
|
||||
return -ENODEV;;
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
module_init(umc8672_init);
|
||||
|
||||
Reference in New Issue
Block a user