Message ID | a0880cfbbcc729171a37e2a3bc27680efb06e398.1574922435.git.shubhrajyoti.datta@xilinx.com (mailing list archive) |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | clk: clk-wizard: clock-wizard: Driver updates | expand |
Quoting shubhrajyoti.datta@gmail.com (2019-11-27 22:36:17) > From: Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com> > > After 90b6c5c73 (clk: Remove CLK_IS_BASIC clk flag) > The CLK_IS_BASIC is deleted. Adapt the driver for the same. I don't see any CLK_IS_BASIC in the tree right now, so did it get reintroduced by this patch series? Can you squash this into whatever patch introduces CLK_IS_BASIC usage?
diff --git a/drivers/clk/clk-xlnx-clock-wizard.c b/drivers/clk/clk-xlnx-clock-wizard.c index 9993543..76cfa05 100644 --- a/drivers/clk/clk-xlnx-clock-wizard.c +++ b/drivers/clk/clk-xlnx-clock-wizard.c @@ -345,7 +345,7 @@ static struct clk *clk_wzrd_register_divf(struct device *dev, else init.ops = &clk_wzrd_clk_divider_ops_f; - init.flags = flags | CLK_IS_BASIC; + init.flags = flags; init.parent_names = (parent_name ? &parent_name : NULL); init.num_parents = (parent_name ? 1 : 0); @@ -402,7 +402,7 @@ static struct clk *clk_wzrd_register_divider(struct device *dev, init.ops = &clk_divider_ro_ops; else init.ops = &clk_wzrd_clk_divider_ops; - init.flags = flags | CLK_IS_BASIC; + init.flags = flags; init.parent_names = (parent_name ? &parent_name : NULL); init.num_parents = (parent_name ? 1 : 0);