linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mn88472: add 5MHz dvb-t2 bandwitdh support
@ 2014-12-06 21:57 Benjamin Larsson
  2014-12-06 22:32 ` Antti Palosaari
  0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Larsson @ 2014-12-06 21:57 UTC (permalink / raw)
  Cc: Linux Media Mailing List

Signed-off-by: Benjamin Larsson <benjamin@southpole.se>
---
 drivers/staging/media/mn88472/mn88472.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/media/mn88472/mn88472.c b/drivers/staging/media/mn88472/mn88472.c
index c6895ee..be8a6d5 100644
--- a/drivers/staging/media/mn88472/mn88472.c
+++ b/drivers/staging/media/mn88472/mn88472.c
@@ -61,7 +61,10 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
 	switch (c->delivery_system) {
 	case SYS_DVBT:
 	case SYS_DVBT2:
-		if (c->bandwidth_hz <= 6000000) {
+		if (c->bandwidth_hz <= 5000000) {
+			memcpy(bw_val, "\xe5\x99\x9a\x1b\xa9\x1b\xa9", 7);
+			bw_val2 = 0x03;
+		} else if (c->bandwidth_hz <= 6000000) {
 			/* IF 3570000 Hz, BW 6000000 Hz */
 			memcpy(bw_val, "\xbf\x55\x55\x15\x6b\x15\x6b", 7);
 			bw_val2 = 0x02;
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mn88472: add 5MHz dvb-t2 bandwitdh support
  2014-12-06 21:57 [PATCH] mn88472: add 5MHz dvb-t2 bandwitdh support Benjamin Larsson
@ 2014-12-06 22:32 ` Antti Palosaari
  0 siblings, 0 replies; 2+ messages in thread
From: Antti Palosaari @ 2014-12-06 22:32 UTC (permalink / raw)
  To: Benjamin Larsson; +Cc: Linux Media Mailing List


On 12/06/2014 11:57 PM, Benjamin Larsson wrote:
> Signed-off-by: Benjamin Larsson <benjamin@southpole.se>

Reviewed-by: Antti Palosaari <crope@iki.fi>

Antti

> ---
>   drivers/staging/media/mn88472/mn88472.c | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/staging/media/mn88472/mn88472.c b/drivers/staging/media/mn88472/mn88472.c
> index c6895ee..be8a6d5 100644
> --- a/drivers/staging/media/mn88472/mn88472.c
> +++ b/drivers/staging/media/mn88472/mn88472.c
> @@ -61,7 +61,10 @@ static int mn88472_set_frontend(struct dvb_frontend *fe)
>   	switch (c->delivery_system) {
>   	case SYS_DVBT:
>   	case SYS_DVBT2:
> -		if (c->bandwidth_hz <= 6000000) {
> +		if (c->bandwidth_hz <= 5000000) {
> +			memcpy(bw_val, "\xe5\x99\x9a\x1b\xa9\x1b\xa9", 7);
> +			bw_val2 = 0x03;
> +		} else if (c->bandwidth_hz <= 6000000) {
>   			/* IF 3570000 Hz, BW 6000000 Hz */
>   			memcpy(bw_val, "\xbf\x55\x55\x15\x6b\x15\x6b", 7);
>   			bw_val2 = 0x02;
>

-- 
http://palosaari.fi/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-12-06 22:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-06 21:57 [PATCH] mn88472: add 5MHz dvb-t2 bandwitdh support Benjamin Larsson
2014-12-06 22:32 ` Antti Palosaari

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).