diff options
author | Dave Jones <davej@redhat.com> | 2006-02-07 03:49:15 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-02-07 03:55:32 -0500 |
commit | 62b2c00addf2e7d441c4f29e2dd804110b9d9475 (patch) | |
tree | 1a9d191582b6d023da18e696b3f077b8f522c497 /drivers/media | |
parent | be8a82d181147b9a6033ca9df870ca9fa0b0c515 (diff) |
V4L/DVB (3318c): fix saa7146 kobject register failure
Whoops.
kobject_register failed for hexium HV-PCI6/Orion (-13)
[<c01d3eb6>] kobject_register+0x31/0x47
[<c023a996>] bus_add_driver+0x4a/0xfd
[<c01de3c1>] __pci_register_driver+0x82/0xa4
[<d083400a>] hexium_init_module+0xa/0x47 [hexium_orion]
[<c013bdae>] sys_init_module+0x167b/0x1822
[<c01633f7>] do_sync_read+0xb8/0xf3
[<c0133fa3>] autoremove_wake_function+0x0/0x2d
[<c0145390>] audit_syscall_entry+0x118/0x13f
[<c0106ae2>] do_syscall_trace+0x104/0x14a
[<c0103d21>] syscall_call+0x7/0xb
slashes in kobject names aren't allowed.
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/hexium_orion.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/hexium_orion.c b/drivers/media/video/hexium_orion.c index 0b6c2096ec66..aad4a18aafd6 100644 --- a/drivers/media/video/hexium_orion.c +++ b/drivers/media/video/hexium_orion.c | |||
@@ -484,7 +484,7 @@ static struct saa7146_ext_vv vv_data = { | |||
484 | }; | 484 | }; |
485 | 485 | ||
486 | static struct saa7146_extension extension = { | 486 | static struct saa7146_extension extension = { |
487 | .name = "hexium HV-PCI6/Orion", | 487 | .name = "hexium HV-PCI6 Orion", |
488 | .flags = 0, // SAA7146_USE_I2C_IRQ, | 488 | .flags = 0, // SAA7146_USE_I2C_IRQ, |
489 | 489 | ||
490 | .pci_tbl = &pci_tbl[0], | 490 | .pci_tbl = &pci_tbl[0], |