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

Commit 3bfb21fa authored by Junjie Wu's avatar Junjie Wu
Browse files

clock-local2: Update F_END macro to match data type



freq_hz is unsigned long. Update F_END macro to use ULONG_MAX
instead of UINT_MAX.

Change-Id: I2d7f10d0301cbdb85a14d85c33975c9cf19db67c
Signed-off-by: default avatarJunjie Wu <junjiew@codeaurora.org>
parent 9ffbb924
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
/* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
/* Copyright (c) 2012-2014, 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
@@ -41,7 +41,7 @@ struct clk_freq_tbl {
	const unsigned	sys_vdd;
};

#define FREQ_END	(UINT_MAX-1)
#define FREQ_END	(ULONG_MAX-1)
#define F_END { .freq_hz = FREQ_END }

/*