* [linux-dvb] [multiproto patch] fix ATSC api conversion
@ 2008-05-23 14:59 Anssi Hannula
2008-07-04 6:32 ` Anssi Hannula
0 siblings, 1 reply; 2+ messages in thread
From: Anssi Hannula @ 2008-05-23 14:59 UTC (permalink / raw)
To: linux-dvb
[-- Attachment #1: Type: text/plain, Size: 86 bytes --]
Hi!
The attached patch fixes ATSC conversion in olddrv_to_newapi.
--
Anssi Hannula
[-- Attachment #2: multiproto-fix-atsc-conversion.diff --]
[-- Type: text/x-patch, Size: 802 bytes --]
From: Anssi Hannula <anssi.hannula@gmail.com>
multiproto: fix ATSC conversion in olddrv_to_newapi
In olddrv_to_newapi() the ATSC modulation conversion used newmod_to_oldmod()
instead of the correct oldmod_to_newmod(). Fix it.
Signed-off-by: Anssi Hannula <anssi.hannula@gmail.com>
---
diff -r 46df93f7bcee -r 6fdfb2b22241 linux/drivers/media/dvb/dvb-core/dvb_frontend.c
--- a/linux/drivers/media/dvb/dvb-core/dvb_frontend.c Sun Apr 13 17:52:40 2008 +0400
+++ b/linux/drivers/media/dvb/dvb-core/dvb_frontend.c Fri May 23 17:17:02 2008 +0300
@@ -562,7 +562,7 @@
}
break;
case FE_ATSC:
- newmod_to_oldmod(atsc->modulation, &vsb->modulation);
+ oldmod_to_newmod(vsb->modulation, &atsc->modulation);
break;
default:
dprintk("%s: Unsupported delivery system %x\n", __func__, fe_type);
[-- Attachment #3: Type: text/plain, Size: 150 bytes --]
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-07-04 6:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-23 14:59 [linux-dvb] [multiproto patch] fix ATSC api conversion Anssi Hannula
2008-07-04 6:32 ` Anssi Hannula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox