<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mediapointer-dvb-s2/linux/drivers/media/dvb/dm1105/Kconfig, branch master</title>
<subtitle>Mediapointer DVB-S2 driver
</subtitle>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/'/>
<entry>
<title>dm1105: uses ir_* functions, select VIDEO_IR</title>
<updated>2009-03-04T16:57:04+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2009-03-04T16:57:04+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=b6fa6a4b2489d8599ce71ae8bc9075cbd144caaa'/>
<id>b6fa6a4b2489d8599ce71ae8bc9075cbd144caaa</id>
<content type='text'>
From: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;

dm1105 uses the ir_*() functions, so it needs to select VIDEO_IR
to avoid build errors:

dm1105.c:(.text+0x26b7ac): undefined reference to `ir_input_keydown'
dm1105.c:(.text+0x26b7bc): undefined reference to `ir_input_nokey'
(.devinit.text+0x29982): undefined reference to `ir_codes_dm1105_nec'
(.devinit.text+0x2998a): undefined reference to `ir_input_init'

Signed-off-by: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;

dm1105 uses the ir_*() functions, so it needs to select VIDEO_IR
to avoid build errors:

dm1105.c:(.text+0x26b7ac): undefined reference to `ir_input_keydown'
dm1105.c:(.text+0x26b7bc): undefined reference to `ir_input_nokey'
(.devinit.text+0x29982): undefined reference to `ir_codes_dm1105_nec'
(.devinit.text+0x2998a): undefined reference to `ir_input_init'

Signed-off-by: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;
Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>dm1105: Fix build with INPUT=m and DVB_DM1105=y</title>
<updated>2009-01-06T11:33:46+00:00</updated>
<author>
<name>Mauro Carvalho Chehab</name>
<email>mchehab@redhat.com</email>
</author>
<published>2009-01-06T11:33:46+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=0de930aeb0009dc9c3a37f6553b7de630196fb68'/>
<id>0de930aeb0009dc9c3a37f6553b7de630196fb68</id>
<content type='text'>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As reported by Randy Dunlap &lt;randy.dunlap@oracle.com&gt;:

With CONFIG_INPUT=m and CONFIG_DVB_DM1105=y:

drivers/built-in.o: In function `input_sync':
dm1105.c:(.text+0x120c33): undefined reference to `input_event'
drivers/built-in.o: In function `dm1105_emit_key':
dm1105.c:(.text+0x120c6c): undefined reference to `input_event'
dm1105.c:(.text+0x120c82): undefined reference to `input_event'
dm1105.c:(.text+0x120cb2): undefined reference to `input_event'
dm1105.c:(.text+0x120cd1): undefined reference to `input_event'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xd8ae): undefined reference to `input_allocate_device'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xd9f6): undefined reference to `input_register_device'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xda09): undefined reference to `input_free_device'
drivers/built-in.o: In function `dm1105_ir_exit':
(.devexit.text+0xcde): undefined reference to `input_unregister_device'

This is due to the lack of a dependency between dm1105 and CONFIG_INPUT

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
CC:  Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;

As reported by Randy Dunlap &lt;randy.dunlap@oracle.com&gt;:

With CONFIG_INPUT=m and CONFIG_DVB_DM1105=y:

drivers/built-in.o: In function `input_sync':
dm1105.c:(.text+0x120c33): undefined reference to `input_event'
drivers/built-in.o: In function `dm1105_emit_key':
dm1105.c:(.text+0x120c6c): undefined reference to `input_event'
dm1105.c:(.text+0x120c82): undefined reference to `input_event'
dm1105.c:(.text+0x120cb2): undefined reference to `input_event'
dm1105.c:(.text+0x120cd1): undefined reference to `input_event'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xd8ae): undefined reference to `input_allocate_device'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xd9f6): undefined reference to `input_register_device'
drivers/built-in.o: In function `dm1105_ir_init':
(.devinit.text+0xda09): undefined reference to `input_free_device'
drivers/built-in.o: In function `dm1105_ir_exit':
(.devexit.text+0xcde): undefined reference to `input_unregister_device'

This is due to the lack of a dependency between dm1105 and CONFIG_INPUT

Signed-off-by: Mauro Carvalho Chehab &lt;mchehab@redhat.com&gt;
CC:  Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Kconfig dependency fix for DW2002 card with ST STV0288 demodulator.</title>
<updated>2008-09-25T02:18:27+00:00</updated>
<author>
<name>Igor M. Liplianin</name>
<email>liplianin@me.by</email>
</author>
<published>2008-09-25T02:18:27+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=90c4877707444823952b5c1bf995395b73e0c0c4'/>
<id>90c4877707444823952b5c1bf995395b73e0c0c4</id>
<content type='text'>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Kconfig dependency fix for DW2002 card with ST STV0288 demodulator.

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Kconfig dependency fix for DW2002 card with ST STV0288 demodulator.

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for Silicon Laboratories SI2109/2110 demodulators.</title>
<updated>2008-09-16T21:21:11+00:00</updated>
<author>
<name>Igor M. Liplianin</name>
<email>liplianin@me.by</email>
</author>
<published>2008-09-16T21:21:11+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=3668eadcd7c33c68a01f1f3333e65a17d944b551'/>
<id>3668eadcd7c33c68a01f1f3333e65a17d944b551</id>
<content type='text'>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for Silicon Laboratories SI2109/2110 demodulator
and cards with it, such as DvbWorld PCI2002.

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for Silicon Laboratories SI2109/2110 demodulator
and cards with it, such as DvbWorld PCI2002.

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for DvbWorld 2004 DVB-S2 PCI adapter</title>
<updated>2008-09-13T23:56:59+00:00</updated>
<author>
<name>Igor M. Liplianin</name>
<email>liplianin@me.by</email>
</author>
<published>2008-09-13T23:56:59+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=18e7f955906a13d81aa379e24fb28eb68c952694'/>
<id>18e7f955906a13d81aa379e24fb28eb68c952694</id>
<content type='text'>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for DvbWorld 2004 DVB-S2 PCI adapter.
The card contains dm1105 PCI chip and cx24116 demodulator

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for DvbWorld 2004 DVB-S2 PCI adapter.
The card contains dm1105 PCI chip and cx24116 demodulator

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for SDMC DM1105 PCI chip</title>
<updated>2008-09-13T13:10:53+00:00</updated>
<author>
<name>Igor M. Liplianin</name>
<email>liplianin@me.by</email>
</author>
<published>2008-09-13T13:10:53+00:00</published>
<link rel='alternate' type='text/html' href='https://vdr-projects.e-tobi.net/git/mediapointer-dvb-s2/commit/?id=d9ee7f39c3a6582c9e1527a550c3eaee5ea7e0a7'/>
<id>d9ee7f39c3a6582c9e1527a550c3eaee5ea7e0a7</id>
<content type='text'>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for SDMC DM1105 PCI chip. There is a lot of
cards based on it, like DvbWorld 2002 DVB-S , 2004 DVB-S2

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Igor M. Liplianin &lt;liplianin@me.by&gt;

Add support for SDMC DM1105 PCI chip. There is a lot of
cards based on it, like DvbWorld 2002 DVB-S , 2004 DVB-S2

Signed-off-by: Igor M. Liplianin &lt;liplianin@me.by&gt;
</pre>
</div>
</content>
</entry>
</feed>
