Re: [PATCH v3 09/10] staging: clocking-wizard: Delete the driver from the staging

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:16) > From: Shubhrajyoti Datta > > Delete the driver from the staging as it is in drivers/clk. > > Signed-off-by: Shubhrajyoti Datta Can all these patches in this series apply to the staging paths and be picked up by Greg? Then when the dr

Re: [PATCH v3 10/10] clk: clock-wizard: Fix the compilation failure

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:17) > From: Shubhrajyoti Datta > > 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

Re: [PATCH v3 03/10] clk: clock-wizard: Fix kernel-doc warning

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:10) > From: Shubhrajyoti Datta > > Update description for the clocking wizard structure > > Signed-off-by: Shubhrajyoti Datta > --- Reviewed-by: Stephen Boyd ___ devel mailing list de...@linuxd

[PATCH 1/2] staging: rtl8188eu: remove else after return

2020-01-05 Thread Michael Straube
Remove else after return in rtl88eu_dm_antenna_diversity() to improve readability and clear a checkpatch warning. WARNING: else is not generally useful after a break or return Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/odm_rtl8188e.c | 26 +++- 1 file chang

[PATCH 2/2] staging: rtl8188eu: refactor rtl88eu_dm_update_rx_idle_ant()

2020-01-05 Thread Michael Straube
Refactor rtl88eu_dm_update_rx_idle_ant() to reduce indentation level and clear line over 80 characters checkpatch warnings. Signed-off-by: Michael Straube --- drivers/staging/rtl8188eu/hal/odm_rtl8188e.c | 56 ++-- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/d

Re: [PATCH v3 04/10] clk: clock-wizard: Add support for dynamic reconfiguration

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:11) > From: Shubhrajyoti Datta > > The patch adds support for dynamic reconfiguration of clock output rate. > Output clocks are registered as dividers and set rate callback function > is used for dynamic reconfiguration. > > Based on the ini

Re: [PATCH v3 06/10] clk: clock-wizard: Remove the hardcoding of the clock outputs

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:13) > diff --git a/drivers/clk/clk-xlnx-clock-wizard.c > b/drivers/clk/clk-xlnx-clock-wizard.c > index bc0354a..4c6155b 100644 > --- a/drivers/clk/clk-xlnx-clock-wizard.c > +++ b/drivers/clk/clk-xlnx-clock-wizard.c > @@ -493,6 +493,7 @@ static

Re: [PATCH v3 07/10] clk: clock-wizard: Update the fixed factor divisors

2020-01-05 Thread Stephen Boyd
Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:14) > From: Shubhrajyoti Datta > > Update the fixed factor clock registration to register the divisors. > > Signed-off-by: Shubhrajyoti Datta > --- > drivers/clk/clk-xlnx-clock-wizard.c | 17 +++-- > 1 file changed, 11 insertio

Re: [PATCH v3 07/10] clk: clock-wizard: Update the fixed factor divisors

2020-01-05 Thread Shubhrajyoti Datta
On Mon, Jan 6, 2020 at 1:30 AM Stephen Boyd wrote: > > Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:14) > > From: Shubhrajyoti Datta > > > > Update the fixed factor clock registration to register the divisors. > > > > Signed-off-by: Shubhrajyoti Datta > > --- > > drivers/clk/clk-xlnx-

Re: [PATCH v3 07/10] clk: clock-wizard: Update the fixed factor divisors

2020-01-05 Thread Stephen Boyd
Quoting Shubhrajyoti Datta (2020-01-05 20:17:16) > On Mon, Jan 6, 2020 at 1:30 AM Stephen Boyd wrote: > > > > Quoting shubhrajyoti.da...@gmail.com (2019-11-27 22:36:14) > > > From: Shubhrajyoti Datta > > > > > > Update the fixed factor clock registration to register the divisors. > > > > > > Sign