diff options
author | Douglas Schilling Landgraf <dougsland@gmail.com> | 2007-05-27 13:05:01 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-07-18 13:23:47 -0400 |
commit | 2e02b9a717388c99f2c2ef0aa03f86334bbf8fc7 (patch) | |
tree | f3e95d05420778e8340780911fc11353b047844f /drivers/media/radio | |
parent | 805b35634b6c349738664619a6d2eb8ece02fe63 (diff) |
V4L/DVB (5705): Removed unnecessary .hardware from video_device struct.
From: Douglas Schilling Landgraf <dougsland@gmail.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r-- | drivers/media/radio/radio-aimslab.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-aztech.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-gemtek-pci.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-gemtek.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-rtrack2.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-sf16fmi.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-sf16fmr2.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-terratec.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-trust.c | 1 | ||||
-rw-r--r-- | drivers/media/radio/radio-typhoon.c | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/drivers/media/radio/radio-aimslab.c b/drivers/media/radio/radio-aimslab.c index 5adc27c3ced9..ce940b1b787f 100644 --- a/drivers/media/radio/radio-aimslab.c +++ b/drivers/media/radio/radio-aimslab.c | |||
@@ -392,7 +392,6 @@ static struct video_device rtrack_radio= | |||
392 | .owner = THIS_MODULE, | 392 | .owner = THIS_MODULE, |
393 | .name = "RadioTrack radio", | 393 | .name = "RadioTrack radio", |
394 | .type = VID_TYPE_TUNER, | 394 | .type = VID_TYPE_TUNER, |
395 | .hardware = 0, | ||
396 | .fops = &rtrack_fops, | 395 | .fops = &rtrack_fops, |
397 | .vidioc_querycap = vidioc_querycap, | 396 | .vidioc_querycap = vidioc_querycap, |
398 | .vidioc_g_tuner = vidioc_g_tuner, | 397 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-aztech.c b/drivers/media/radio/radio-aztech.c index 9f1addae6928..9b1f7a99dac0 100644 --- a/drivers/media/radio/radio-aztech.c +++ b/drivers/media/radio/radio-aztech.c | |||
@@ -355,7 +355,6 @@ static struct video_device aztech_radio= | |||
355 | .owner = THIS_MODULE, | 355 | .owner = THIS_MODULE, |
356 | .name = "Aztech radio", | 356 | .name = "Aztech radio", |
357 | .type = VID_TYPE_TUNER, | 357 | .type = VID_TYPE_TUNER, |
358 | .hardware = 0, | ||
359 | .fops = &aztech_fops, | 358 | .fops = &aztech_fops, |
360 | .vidioc_querycap = vidioc_querycap, | 359 | .vidioc_querycap = vidioc_querycap, |
361 | .vidioc_g_tuner = vidioc_g_tuner, | 360 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index 5e6f17df204b..4db05b2b1b6e 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c | |||
@@ -377,7 +377,6 @@ static struct video_device vdev_template = { | |||
377 | .owner = THIS_MODULE, | 377 | .owner = THIS_MODULE, |
378 | .name = "Gemtek PCI Radio", | 378 | .name = "Gemtek PCI Radio", |
379 | .type = VID_TYPE_TUNER, | 379 | .type = VID_TYPE_TUNER, |
380 | .hardware = 0, | ||
381 | .fops = &gemtek_pci_fops, | 380 | .fops = &gemtek_pci_fops, |
382 | .vidioc_querycap = vidioc_querycap, | 381 | .vidioc_querycap = vidioc_querycap, |
383 | .vidioc_g_tuner = vidioc_g_tuner, | 382 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-gemtek.c b/drivers/media/radio/radio-gemtek.c index b04b6a7fff7c..eab8c80a2e47 100644 --- a/drivers/media/radio/radio-gemtek.c +++ b/drivers/media/radio/radio-gemtek.c | |||
@@ -330,7 +330,6 @@ static struct video_device gemtek_radio= | |||
330 | .owner = THIS_MODULE, | 330 | .owner = THIS_MODULE, |
331 | .name = "GemTek radio", | 331 | .name = "GemTek radio", |
332 | .type = VID_TYPE_TUNER, | 332 | .type = VID_TYPE_TUNER, |
333 | .hardware = 0, | ||
334 | .fops = &gemtek_fops, | 333 | .fops = &gemtek_fops, |
335 | .vidioc_querycap = vidioc_querycap, | 334 | .vidioc_querycap = vidioc_querycap, |
336 | .vidioc_g_tuner = vidioc_g_tuner, | 335 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-rtrack2.c b/drivers/media/radio/radio-rtrack2.c index 9b493b3298cd..82aedfc95d4f 100644 --- a/drivers/media/radio/radio-rtrack2.c +++ b/drivers/media/radio/radio-rtrack2.c | |||
@@ -297,7 +297,6 @@ static struct video_device rtrack2_radio= | |||
297 | .owner = THIS_MODULE, | 297 | .owner = THIS_MODULE, |
298 | .name = "RadioTrack II radio", | 298 | .name = "RadioTrack II radio", |
299 | .type = VID_TYPE_TUNER, | 299 | .type = VID_TYPE_TUNER, |
300 | .hardware = 0, | ||
301 | .fops = &rtrack2_fops, | 300 | .fops = &rtrack2_fops, |
302 | .vidioc_querycap = vidioc_querycap, | 301 | .vidioc_querycap = vidioc_querycap, |
303 | .vidioc_g_tuner = vidioc_g_tuner, | 302 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-sf16fmi.c b/drivers/media/radio/radio-sf16fmi.c index dc33f19c0e2c..395165367f37 100644 --- a/drivers/media/radio/radio-sf16fmi.c +++ b/drivers/media/radio/radio-sf16fmi.c | |||
@@ -297,7 +297,6 @@ static struct video_device fmi_radio= | |||
297 | .owner = THIS_MODULE, | 297 | .owner = THIS_MODULE, |
298 | .name = "SF16FMx radio", | 298 | .name = "SF16FMx radio", |
299 | .type = VID_TYPE_TUNER, | 299 | .type = VID_TYPE_TUNER, |
300 | .hardware = 0, | ||
301 | .fops = &fmi_fops, | 300 | .fops = &fmi_fops, |
302 | .vidioc_querycap = vidioc_querycap, | 301 | .vidioc_querycap = vidioc_querycap, |
303 | .vidioc_g_tuner = vidioc_g_tuner, | 302 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-sf16fmr2.c b/drivers/media/radio/radio-sf16fmr2.c index e6c125def5cb..c432c44bd634 100644 --- a/drivers/media/radio/radio-sf16fmr2.c +++ b/drivers/media/radio/radio-sf16fmr2.c | |||
@@ -442,7 +442,6 @@ static struct video_device fmr2_radio= | |||
442 | .owner = THIS_MODULE, | 442 | .owner = THIS_MODULE, |
443 | .name = "SF16FMR2 radio", | 443 | .name = "SF16FMR2 radio", |
444 | . type = VID_TYPE_TUNER, | 444 | . type = VID_TYPE_TUNER, |
445 | .hardware = 0, | ||
446 | .fops = &fmr2_fops, | 445 | .fops = &fmr2_fops, |
447 | .vidioc_querycap = vidioc_querycap, | 446 | .vidioc_querycap = vidioc_querycap, |
448 | .vidioc_g_tuner = vidioc_g_tuner, | 447 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-terratec.c b/drivers/media/radio/radio-terratec.c index e43acfd7e533..7e1911c3d54e 100644 --- a/drivers/media/radio/radio-terratec.c +++ b/drivers/media/radio/radio-terratec.c | |||
@@ -369,7 +369,6 @@ static struct video_device terratec_radio= | |||
369 | .owner = THIS_MODULE, | 369 | .owner = THIS_MODULE, |
370 | .name = "TerraTec ActiveRadio", | 370 | .name = "TerraTec ActiveRadio", |
371 | .type = VID_TYPE_TUNER, | 371 | .type = VID_TYPE_TUNER, |
372 | .hardware = 0, | ||
373 | .fops = &terratec_fops, | 372 | .fops = &terratec_fops, |
374 | .vidioc_querycap = vidioc_querycap, | 373 | .vidioc_querycap = vidioc_querycap, |
375 | .vidioc_g_tuner = vidioc_g_tuner, | 374 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-trust.c b/drivers/media/radio/radio-trust.c index c27c629d99df..c11981fed827 100644 --- a/drivers/media/radio/radio-trust.c +++ b/drivers/media/radio/radio-trust.c | |||
@@ -349,7 +349,6 @@ static struct video_device trust_radio= | |||
349 | .owner = THIS_MODULE, | 349 | .owner = THIS_MODULE, |
350 | .name = "Trust FM Radio", | 350 | .name = "Trust FM Radio", |
351 | .type = VID_TYPE_TUNER, | 351 | .type = VID_TYPE_TUNER, |
352 | .hardware = 0, | ||
353 | .fops = &trust_fops, | 352 | .fops = &trust_fops, |
354 | .vidioc_querycap = vidioc_querycap, | 353 | .vidioc_querycap = vidioc_querycap, |
355 | .vidioc_g_tuner = vidioc_g_tuner, | 354 | .vidioc_g_tuner = vidioc_g_tuner, |
diff --git a/drivers/media/radio/radio-typhoon.c b/drivers/media/radio/radio-typhoon.c index 8ff5a23a9f01..1366326474e5 100644 --- a/drivers/media/radio/radio-typhoon.c +++ b/drivers/media/radio/radio-typhoon.c | |||
@@ -349,7 +349,6 @@ static struct video_device typhoon_radio = | |||
349 | .owner = THIS_MODULE, | 349 | .owner = THIS_MODULE, |
350 | .name = "Typhoon Radio", | 350 | .name = "Typhoon Radio", |
351 | .type = VID_TYPE_TUNER, | 351 | .type = VID_TYPE_TUNER, |
352 | .hardware = 0, | ||
353 | .fops = &typhoon_fops, | 352 | .fops = &typhoon_fops, |
354 | .vidioc_querycap = vidioc_querycap, | 353 | .vidioc_querycap = vidioc_querycap, |
355 | .vidioc_g_tuner = vidioc_g_tuner, | 354 | .vidioc_g_tuner = vidioc_g_tuner, |