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

Commit e03f5b77 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clk: msm: cpu-clock: Fix logical-not-parentheses warnings and errors"

parents 3bd6bd5b db723a9a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014-2016, 2018, The Linux Foundation. All rights reserved.
 * Copyright (c) 2014-2016, 2018-2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -1081,7 +1081,7 @@ static int __init cpu_clock_a53_init_little(void)

	/* Wait for update to take effect */
	for (count = 500; count > 0; count--) {
		if (!(readl_relaxed(base)) & BIT(0))
		if (!(readl_relaxed(base) & BIT(0)))
			break;
		udelay(1);
	}
+2 −2
Original line number Diff line number Diff line
/*
 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
@@ -1104,7 +1104,7 @@ static int __init cpu_clock_init(void)

	/* Wait for update to take effect */
	for (count = 500; count > 0; count--) {
		if (!(readl_relaxed(base)) & BIT(0))
		if (!(readl_relaxed(base) & BIT(0)))
			break;
		udelay(1);
	}