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

Commit be53bc8f authored by Deepak Katragadda's avatar Deepak Katragadda
Browse files

clk: qcom: clk-rcg: Add a src_freq field to the RCG freq_tbl structure



We need to be able to specify the desired RCG parent frequency
in the RCGs frequency table for some clocks. Add a src_freq
field to hold that information.

Change-Id: I1f7fa1d4a7eda277bcd6770baa1f060e8454862b
Signed-off-by: default avatarDeepak Katragadda <dkatraga@codeaurora.org>
parent 3479e4d0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
/*
 * Copyright (c) 2013, 2016, The Linux Foundation. All rights reserved.
 * Copyright (c) 2013, 2016-2017, The Linux Foundation. All rights reserved.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
@@ -23,6 +23,7 @@ struct freq_tbl {
	u8 pre_div;
	u16 m;
	u16 n;
	unsigned long src_freq;
};

/**