* [PATCH] iio:adc:mcp3422 Fix incorrect scales table
@ 2015-02-04 14:14 Angelo Compagnucci
2015-02-04 16:31 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: Angelo Compagnucci @ 2015-02-04 14:14 UTC (permalink / raw)
To: linux-iio; +Cc: Angelo Compagnucci
This patch fixes uncorrect order of mcp3422_scales table, the values
was erroneously transposed.
It removes also an unused array and a wrong comment.
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
---
drivers/iio/adc/mcp3422.c | 17 ++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)
diff --git a/drivers/iio/adc/mcp3422.c b/drivers/iio/adc/mcp3422.c
index 5167225..b96c636 100644
--- a/drivers/iio/adc/mcp3422.c
+++ b/drivers/iio/adc/mcp3422.c
@@ -58,20 +58,11 @@
.info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
}
-/* LSB is in nV to eliminate floating point */
-static const u32 rates_to_lsb[] = {1000000, 250000, 62500, 15625};
-
-/*
- * scales calculated as:
- * rates_to_lsb[sample_rate] / (1 << pga);
- * pga is 1 for 0, 2
- */
-
static const int mcp3422_scales[4][4] = {
- { 1000000, 250000, 62500, 15625 },
- { 500000 , 125000, 31250, 7812 },
- { 250000 , 62500 , 15625, 3906 },
- { 125000 , 31250 , 7812 , 1953 } };
+ { 1000000, 500000, 250000, 125000 },
+ { 250000 , 125000, 62500 , 31250 },
+ { 62500 , 31250 , 15625 , 7812 },
+ { 15625 , 7812 , 3906 , 1953 } };
/* Constant msleep times for data acquisitions */
static const int mcp3422_read_times[4] = {
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] iio:adc:mcp3422 Fix incorrect scales table
2015-02-04 14:14 [PATCH] iio:adc:mcp3422 Fix incorrect scales table Angelo Compagnucci
@ 2015-02-04 16:31 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2015-02-04 16:31 UTC (permalink / raw)
To: Angelo Compagnucci, linux-iio
On 04/02/15 14:14, Angelo Compagnucci wrote:
> This patch fixes uncorrect order of mcp3422_scales table, the values
> was erroneously transposed.
> It removes also an unused array and a wrong comment.
>
> Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Applied to the fixes-togreg branch of iio.git. Given timing this will
got to Greg after the merge windows closes.
I'm travelling without my ssh key so this won't hit git.kernel.org until
at least Sunday.
(Mind you Manchester airport's wifi isn't working in the bar, so who knows
when the email will go out!)
> ---
> drivers/iio/adc/mcp3422.c | 17 ++++-------------
> 1 file changed, 4 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/iio/adc/mcp3422.c b/drivers/iio/adc/mcp3422.c
> index 5167225..b96c636 100644
> --- a/drivers/iio/adc/mcp3422.c
> +++ b/drivers/iio/adc/mcp3422.c
> @@ -58,20 +58,11 @@
> .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SAMP_FREQ), \
> }
>
> -/* LSB is in nV to eliminate floating point */
> -static const u32 rates_to_lsb[] = {1000000, 250000, 62500, 15625};
> -
> -/*
> - * scales calculated as:
> - * rates_to_lsb[sample_rate] / (1 << pga);
> - * pga is 1 for 0, 2
> - */
> -
> static const int mcp3422_scales[4][4] = {
> - { 1000000, 250000, 62500, 15625 },
> - { 500000 , 125000, 31250, 7812 },
> - { 250000 , 62500 , 15625, 3906 },
> - { 125000 , 31250 , 7812 , 1953 } };
> + { 1000000, 500000, 250000, 125000 },
> + { 250000 , 125000, 62500 , 31250 },
> + { 62500 , 31250 , 15625 , 7812 },
> + { 15625 , 7812 , 3906 , 1953 } };
>
> /* Constant msleep times for data acquisitions */
> static const int mcp3422_read_times[4] = {
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-02-04 18:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-04 14:14 [PATCH] iio:adc:mcp3422 Fix incorrect scales table Angelo Compagnucci
2015-02-04 16:31 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox