Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75390
b: refs/heads/master
c: da51716
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Mauro Carvalho Chehab committed Jan 11, 2008
1 parent 443eb42 commit 6bc5b02
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 745a4c9f0ba60a414224f2d5e4f0e8e25efd04e8
refs/heads/master: da517164f5b9133ecc7a020342e90452c215ec0f
10 changes: 5 additions & 5 deletions trunk/drivers/media/dvb/ttpci/av7110.c
Original file line number Diff line number Diff line change
Expand Up @@ -2800,12 +2800,12 @@ static void av7110_irq(struct saa7146_dev* dev, u32 *isr)
}


static struct saa7146_extension av7110_extension;
static struct saa7146_extension av7110_extension_driver;

#define MAKE_AV7110_INFO(x_var,x_name) \
static struct saa7146_pci_extension_data x_var = { \
.ext_priv = x_name, \
.ext = &av7110_extension }
.ext = &av7110_extension_driver }

MAKE_AV7110_INFO(tts_1_X_fsc,"Technotrend/Hauppauge WinTV DVB-S rev1.X or Fujitsu Siemens DVB-C");
MAKE_AV7110_INFO(ttt_1_X, "Technotrend/Hauppauge WinTV DVB-T rev1.X");
Expand Down Expand Up @@ -2843,7 +2843,7 @@ static struct pci_device_id pci_tbl[] = {
MODULE_DEVICE_TABLE(pci, pci_tbl);


static struct saa7146_extension av7110_extension = {
static struct saa7146_extension av7110_extension_driver = {
.name = "dvb",
.flags = SAA7146_USE_I2C_IRQ,

Expand All @@ -2860,14 +2860,14 @@ static struct saa7146_extension av7110_extension = {
static int __init av7110_init(void)
{
int retval;
retval = saa7146_register_extension(&av7110_extension);
retval = saa7146_register_extension(&av7110_extension_driver);
return retval;
}


static void __exit av7110_exit(void)
{
saa7146_unregister_extension(&av7110_extension);
saa7146_unregister_extension(&av7110_extension_driver);
}

module_init(av7110_init);
Expand Down

0 comments on commit 6bc5b02

Please sign in to comment.