* [PATCH v2] staging: sm750fb: replace macro w builtin fn
@ 2016-09-28 23:46 Elizabeth Ferdman
2016-09-29 5:46 ` [Outreachy kernel] " Julia Lawall
0 siblings, 1 reply; 2+ messages in thread
From: Elizabeth Ferdman @ 2016-09-28 23:46 UTC (permalink / raw)
To: outreachy-kernel
Cc: gregkh, teddy.wang, sudipm.mukherjee, amsfield22, daniel.baluta
Replace the unique arithmetic macro expression with a built-in
function from linux/kernel.h DIV_ROUND_CLOSEST(x, divisor).
Signed-off-by: Elizabeth Ferdman <gnudevliz@gmail.com>
---
Changes in v2:
- Change commit message
- replace arithmetic expression with built in function
drivers/staging/sm750fb/ddk750_chip.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index 3a0afe1..0c96a17 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -6,8 +6,6 @@
#include "ddk750_chip.h"
#include "ddk750_power.h"
-/* n / d + 1 / 2 = (2n + d) / 2d */
-#define roundedDiv(num, denom) ((2 * (num) + (denom)) / (2 * (denom)))
#define MHz(x) ((x) * 1000000)
logical_chip_type_t sm750_get_chip_type(void)
@@ -102,7 +100,7 @@ static void setMemoryClock(unsigned int frequency)
frequency = MHz(336);
/* Calculate the divisor */
- divisor = roundedDiv(get_mxclk_freq(), frequency);
+ divisor = DIV_ROUND_CLOSEST(get_mxclk_freq(), frequency);
/* Set the corresponding divisor in the register. */
reg = PEEK32(CURRENT_GATE) & ~CURRENT_GATE_M2XCLK_MASK;
@@ -152,7 +150,7 @@ static void setMasterClock(unsigned int frequency)
frequency = MHz(190);
/* Calculate the divisor */
- divisor = roundedDiv(get_mxclk_freq(), frequency);
+ divisor = DIV_ROUND_CLOSEST(get_mxclk_freq(), frequency);
/* Set the corresponding divisor in the register. */
reg = PEEK32(CURRENT_GATE) & ~CURRENT_GATE_MCLK_MASK;
@@ -401,5 +399,3 @@ unsigned int formatPllReg(pll_value_t *pPLL)
return reg;
}
-
-
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Outreachy kernel] [PATCH v2] staging: sm750fb: replace macro w builtin fn
2016-09-28 23:46 [PATCH v2] staging: sm750fb: replace macro w builtin fn Elizabeth Ferdman
@ 2016-09-29 5:46 ` Julia Lawall
0 siblings, 0 replies; 2+ messages in thread
From: Julia Lawall @ 2016-09-29 5:46 UTC (permalink / raw)
To: Elizabeth Ferdman
Cc: outreachy-kernel, gregkh, teddy.wang, sudipm.mukherjee,
amsfield22, daniel.baluta
On Wed, 28 Sep 2016, Elizabeth Ferdman wrote:
> Replace the unique arithmetic macro expression with a built-in
I don't understand "unique arithmetic macro expression".
> function from linux/kernel.h DIV_ROUND_CLOSEST(x, divisor).
Some blank lines are deleted at the end of the patch. This seems like a
separate change.
julia
>
> Signed-off-by: Elizabeth Ferdman <gnudevliz@gmail.com>
> ---
> Changes in v2:
> - Change commit message
> - replace arithmetic expression with built in function
>
> drivers/staging/sm750fb/ddk750_chip.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
> index 3a0afe1..0c96a17 100644
> --- a/drivers/staging/sm750fb/ddk750_chip.c
> +++ b/drivers/staging/sm750fb/ddk750_chip.c
> @@ -6,8 +6,6 @@
> #include "ddk750_chip.h"
> #include "ddk750_power.h"
>
> -/* n / d + 1 / 2 = (2n + d) / 2d */
> -#define roundedDiv(num, denom) ((2 * (num) + (denom)) / (2 * (denom)))
> #define MHz(x) ((x) * 1000000)
>
> logical_chip_type_t sm750_get_chip_type(void)
> @@ -102,7 +100,7 @@ static void setMemoryClock(unsigned int frequency)
> frequency = MHz(336);
>
> /* Calculate the divisor */
> - divisor = roundedDiv(get_mxclk_freq(), frequency);
> + divisor = DIV_ROUND_CLOSEST(get_mxclk_freq(), frequency);
>
> /* Set the corresponding divisor in the register. */
> reg = PEEK32(CURRENT_GATE) & ~CURRENT_GATE_M2XCLK_MASK;
> @@ -152,7 +150,7 @@ static void setMasterClock(unsigned int frequency)
> frequency = MHz(190);
>
> /* Calculate the divisor */
> - divisor = roundedDiv(get_mxclk_freq(), frequency);
> + divisor = DIV_ROUND_CLOSEST(get_mxclk_freq(), frequency);
>
> /* Set the corresponding divisor in the register. */
> reg = PEEK32(CURRENT_GATE) & ~CURRENT_GATE_MCLK_MASK;
> @@ -401,5 +399,3 @@ unsigned int formatPllReg(pll_value_t *pPLL)
>
> return reg;
> }
> -
> -
> --
> 2.1.4
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/20160928234631.GA31844%40localhost.
> For more options, visit https://groups.google.com/d/optout.
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-09-29 5:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-28 23:46 [PATCH v2] staging: sm750fb: replace macro w builtin fn Elizabeth Ferdman
2016-09-29 5:46 ` [Outreachy kernel] " Julia Lawall
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.