Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c19a28e1 authored by Fernando Carrijo's avatar Fernando Carrijo Committed by Linus Torvalds
Browse files

remove lots of double-semicolons



Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarTheodore Ts'o <tytso@mit.edu>
Acked-by: default avatarMark Fasheh <mfasheh@suse.com>
Acked-by: default avatarDavid S. Miller <davem@davemloft.net>
Cc: James Morris <jmorris@namei.org>
Acked-by: default avatarCasey Schaufler <casey@schaufler-ca.com>
Acked-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f1565962
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -982,7 +982,7 @@ static int __init longhaul_init(void)
	case 10:
		printk(KERN_ERR PFX "Use acpi-cpufreq driver for VIA C7\n");
	default:
		;;
		;
	}

	return -ENODEV;
+1 −1
Original line number Diff line number Diff line
@@ -3868,7 +3868,7 @@ static void ocfs2_split_record(struct inode *inode,
	struct ocfs2_extent_list *left_el = NULL, *right_el, *insert_el, *el;
	struct ocfs2_extent_rec *rec, *tmprec;

	right_el = path_leaf_el(right_path);;
	right_el = path_leaf_el(right_path);
	if (left_path)
		left_el = path_leaf_el(left_path);

+1 −1
Original line number Diff line number Diff line
@@ -1605,7 +1605,7 @@ int ocfs2_change_file_space(struct file *file, unsigned int cmd,
			    struct ocfs2_space_resv *sr)
{
	struct inode *inode = file->f_path.dentry->d_inode;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);;
	struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);

	if ((cmd == OCFS2_IOC_RESVSP || cmd == OCFS2_IOC_RESVSP64) &&
	    !ocfs2_writes_unwritten_extents(osb))
+1 −1
Original line number Diff line number Diff line
@@ -2752,7 +2752,7 @@ int __init ip6_route_init(void)
		kmem_cache_create("ip6_dst_cache", sizeof(struct rt6_info), 0,
				  SLAB_HWCACHE_ALIGN, NULL);
	if (!ip6_dst_ops_template.kmem_cachep)
		goto out;;
		goto out;

	ret = register_pernet_subsys(&ip6_route_net_ops);
	if (ret)
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ static struct ctl_table_header *ip6_header;

int ipv6_sysctl_register(void)
{
	int err = -ENOMEM;;
	int err = -ENOMEM;

	ip6_header = register_net_sysctl_rotable(net_ipv6_ctl_path, ipv6_table);
	if (ip6_header == NULL)
Loading