diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-01-13 12:48:06 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 04:23:39 -0500 |
commit | f7cbb7fcd3bae5264a079e06411b35366da9bd4d (patch) | |
tree | cc6c46c6e68f2c13da665ad30c9e1dd370dcb7cf /drivers | |
parent | 97c67b65cbdfd19887450ae1b80ddbb54de9559d (diff) |
[ALSA] Fix snd_xxx_t typedefs
Modules: PXA Mainstone driver,CX88 driver,SAA7134 driver
Replace snd_xxx_t typedefs with explicit structs.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/cx88/cx88-alsa.c | 54 | ||||
-rw-r--r-- | drivers/media/video/saa7134/saa7134-alsa.c | 65 | ||||
-rw-r--r-- | drivers/media/video/saa7134/saa7134.h | 2 |
3 files changed, 66 insertions, 55 deletions
diff --git a/drivers/media/video/cx88/cx88-alsa.c b/drivers/media/video/cx88/cx88-alsa.c index 2acccd6d49bc..c841914c0244 100644 --- a/drivers/media/video/cx88/cx88-alsa.c +++ b/drivers/media/video/cx88/cx88-alsa.c | |||
@@ -63,7 +63,7 @@ struct cx88_audio_dev { | |||
63 | /* audio controls */ | 63 | /* audio controls */ |
64 | int irq; | 64 | int irq; |
65 | 65 | ||
66 | snd_card_t *card; | 66 | struct snd_card *card; |
67 | 67 | ||
68 | spinlock_t reg_lock; | 68 | spinlock_t reg_lock; |
69 | 69 | ||
@@ -82,7 +82,7 @@ struct cx88_audio_dev { | |||
82 | struct cx88_buffer *buf; | 82 | struct cx88_buffer *buf; |
83 | 83 | ||
84 | long opened; | 84 | long opened; |
85 | snd_pcm_substream_t *substream; | 85 | struct snd_pcm_substream *substream; |
86 | 86 | ||
87 | }; | 87 | }; |
88 | typedef struct cx88_audio_dev snd_cx88_card_t; | 88 | typedef struct cx88_audio_dev snd_cx88_card_t; |
@@ -96,7 +96,7 @@ typedef struct cx88_audio_dev snd_cx88_card_t; | |||
96 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ | 96 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
97 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ | 97 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
98 | static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1}; | 98 | static int enable[SNDRV_CARDS] = {1, [1 ... (SNDRV_CARDS - 1)] = 1}; |
99 | static snd_card_t *snd_cx88_cards[SNDRV_CARDS]; | 99 | static struct snd_card *snd_cx88_cards[SNDRV_CARDS]; |
100 | 100 | ||
101 | module_param_array(enable, bool, NULL, 0444); | 101 | module_param_array(enable, bool, NULL, 0444); |
102 | MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled."); | 102 | MODULE_PARM_DESC(enable, "Enable cx88x soundcard. default enabled."); |
@@ -320,7 +320,7 @@ static int dsp_buffer_free(snd_cx88_card_t *chip) | |||
320 | /* | 320 | /* |
321 | * Digital hardware definition | 321 | * Digital hardware definition |
322 | */ | 322 | */ |
323 | static snd_pcm_hardware_t snd_cx88_digital_hw = { | 323 | static struct snd_pcm_hardware snd_cx88_digital_hw = { |
324 | .info = SNDRV_PCM_INFO_MMAP | | 324 | .info = SNDRV_PCM_INFO_MMAP | |
325 | SNDRV_PCM_INFO_INTERLEAVED | | 325 | SNDRV_PCM_INFO_INTERLEAVED | |
326 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 326 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
@@ -342,16 +342,16 @@ static snd_pcm_hardware_t snd_cx88_digital_hw = { | |||
342 | /* | 342 | /* |
343 | * audio pcm capture runtime free | 343 | * audio pcm capture runtime free |
344 | */ | 344 | */ |
345 | static void snd_card_cx88_runtime_free(snd_pcm_runtime_t *runtime) | 345 | static void snd_card_cx88_runtime_free(struct snd_pcm_runtime *runtime) |
346 | { | 346 | { |
347 | } | 347 | } |
348 | /* | 348 | /* |
349 | * audio pcm capture open callback | 349 | * audio pcm capture open callback |
350 | */ | 350 | */ |
351 | static int snd_cx88_pcm_open(snd_pcm_substream_t *substream) | 351 | static int snd_cx88_pcm_open(struct snd_pcm_substream *substream) |
352 | { | 352 | { |
353 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 353 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
354 | snd_pcm_runtime_t *runtime = substream->runtime; | 354 | struct snd_pcm_runtime *runtime = substream->runtime; |
355 | int err; | 355 | int err; |
356 | 356 | ||
357 | if (test_and_set_bit(0, &chip->opened)) | 357 | if (test_and_set_bit(0, &chip->opened)) |
@@ -380,7 +380,7 @@ _error: | |||
380 | /* | 380 | /* |
381 | * audio close callback | 381 | * audio close callback |
382 | */ | 382 | */ |
383 | static int snd_cx88_close(snd_pcm_substream_t *substream) | 383 | static int snd_cx88_close(struct snd_pcm_substream *substream) |
384 | { | 384 | { |
385 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 385 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
386 | 386 | ||
@@ -393,8 +393,8 @@ static int snd_cx88_close(snd_pcm_substream_t *substream) | |||
393 | /* | 393 | /* |
394 | * hw_params callback | 394 | * hw_params callback |
395 | */ | 395 | */ |
396 | static int snd_cx88_hw_params(snd_pcm_substream_t * substream, | 396 | static int snd_cx88_hw_params(struct snd_pcm_substream * substream, |
397 | snd_pcm_hw_params_t * hw_params) | 397 | struct snd_pcm_hw_params * hw_params) |
398 | { | 398 | { |
399 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 399 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
400 | struct cx88_buffer *buf; | 400 | struct cx88_buffer *buf; |
@@ -453,7 +453,7 @@ static int snd_cx88_hw_params(snd_pcm_substream_t * substream, | |||
453 | /* | 453 | /* |
454 | * hw free callback | 454 | * hw free callback |
455 | */ | 455 | */ |
456 | static int snd_cx88_hw_free(snd_pcm_substream_t * substream) | 456 | static int snd_cx88_hw_free(struct snd_pcm_substream * substream) |
457 | { | 457 | { |
458 | 458 | ||
459 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 459 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
@@ -469,7 +469,7 @@ static int snd_cx88_hw_free(snd_pcm_substream_t * substream) | |||
469 | /* | 469 | /* |
470 | * prepare callback | 470 | * prepare callback |
471 | */ | 471 | */ |
472 | static int snd_cx88_prepare(snd_pcm_substream_t *substream) | 472 | static int snd_cx88_prepare(struct snd_pcm_substream *substream) |
473 | { | 473 | { |
474 | return 0; | 474 | return 0; |
475 | } | 475 | } |
@@ -478,7 +478,7 @@ static int snd_cx88_prepare(snd_pcm_substream_t *substream) | |||
478 | /* | 478 | /* |
479 | * trigger callback | 479 | * trigger callback |
480 | */ | 480 | */ |
481 | static int snd_cx88_card_trigger(snd_pcm_substream_t *substream, int cmd) | 481 | static int snd_cx88_card_trigger(struct snd_pcm_substream *substream, int cmd) |
482 | { | 482 | { |
483 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 483 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
484 | int err; | 484 | int err; |
@@ -505,10 +505,10 @@ static int snd_cx88_card_trigger(snd_pcm_substream_t *substream, int cmd) | |||
505 | /* | 505 | /* |
506 | * pointer callback | 506 | * pointer callback |
507 | */ | 507 | */ |
508 | static snd_pcm_uframes_t snd_cx88_pointer(snd_pcm_substream_t *substream) | 508 | static snd_pcm_uframes_t snd_cx88_pointer(struct snd_pcm_substream *substream) |
509 | { | 509 | { |
510 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); | 510 | snd_cx88_card_t *chip = snd_pcm_substream_chip(substream); |
511 | snd_pcm_runtime_t *runtime = substream->runtime; | 511 | struct snd_pcm_runtime *runtime = substream->runtime; |
512 | 512 | ||
513 | if (chip->read_count) { | 513 | if (chip->read_count) { |
514 | chip->read_count -= snd_pcm_lib_period_bytes(substream); | 514 | chip->read_count -= snd_pcm_lib_period_bytes(substream); |
@@ -525,7 +525,7 @@ static snd_pcm_uframes_t snd_cx88_pointer(snd_pcm_substream_t *substream) | |||
525 | /* | 525 | /* |
526 | * operators | 526 | * operators |
527 | */ | 527 | */ |
528 | static snd_pcm_ops_t snd_cx88_pcm_ops = { | 528 | static struct snd_pcm_ops snd_cx88_pcm_ops = { |
529 | .open = snd_cx88_pcm_open, | 529 | .open = snd_cx88_pcm_open, |
530 | .close = snd_cx88_close, | 530 | .close = snd_cx88_close, |
531 | .ioctl = snd_pcm_lib_ioctl, | 531 | .ioctl = snd_pcm_lib_ioctl, |
@@ -542,7 +542,7 @@ static snd_pcm_ops_t snd_cx88_pcm_ops = { | |||
542 | static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name) | 542 | static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name) |
543 | { | 543 | { |
544 | int err; | 544 | int err; |
545 | snd_pcm_t *pcm; | 545 | struct snd_pcm *pcm; |
546 | 546 | ||
547 | err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm); | 547 | err = snd_pcm_new(chip->card, name, device, 0, 1, &pcm); |
548 | if (err < 0) | 548 | if (err < 0) |
@@ -557,7 +557,8 @@ static int __devinit snd_cx88_pcm(snd_cx88_card_t *chip, int device, char *name) | |||
557 | /**************************************************************************** | 557 | /**************************************************************************** |
558 | CONTROL INTERFACE | 558 | CONTROL INTERFACE |
559 | ****************************************************************************/ | 559 | ****************************************************************************/ |
560 | static int snd_cx88_capture_volume_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *info) | 560 | static int snd_cx88_capture_volume_info(struct snd_kcontrol *kcontrol, |
561 | struct snd_ctl_elem_info *info) | ||
561 | { | 562 | { |
562 | info->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 563 | info->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
563 | info->count = 1; | 564 | info->count = 1; |
@@ -568,7 +569,8 @@ static int snd_cx88_capture_volume_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_i | |||
568 | } | 569 | } |
569 | 570 | ||
570 | /* OK - TODO: test it */ | 571 | /* OK - TODO: test it */ |
571 | static int snd_cx88_capture_volume_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *value) | 572 | static int snd_cx88_capture_volume_get(struct snd_kcontrol *kcontrol, |
573 | struct snd_ctl_elem_value *value) | ||
572 | { | 574 | { |
573 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); | 575 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
574 | struct cx88_core *core=chip->core; | 576 | struct cx88_core *core=chip->core; |
@@ -579,7 +581,8 @@ static int snd_cx88_capture_volume_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_va | |||
579 | } | 581 | } |
580 | 582 | ||
581 | /* OK - TODO: test it */ | 583 | /* OK - TODO: test it */ |
582 | static int snd_cx88_capture_volume_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *value) | 584 | static int snd_cx88_capture_volume_put(struct snd_kcontrol *kcontrol, |
585 | struct snd_ctl_elem_value *value) | ||
583 | { | 586 | { |
584 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); | 587 | snd_cx88_card_t *chip = snd_kcontrol_chip(kcontrol); |
585 | struct cx88_core *core=chip->core; | 588 | struct cx88_core *core=chip->core; |
@@ -595,7 +598,7 @@ static int snd_cx88_capture_volume_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_va | |||
595 | return v != old_control; | 598 | return v != old_control; |
596 | } | 599 | } |
597 | 600 | ||
598 | static snd_kcontrol_new_t snd_cx88_capture_volume = { | 601 | static struct snd_kcontrol_new snd_cx88_capture_volume = { |
599 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 602 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
600 | .name = "Capture Volume", | 603 | .name = "Capture Volume", |
601 | .info = snd_cx88_capture_volume_info, | 604 | .info = snd_cx88_capture_volume_info, |
@@ -641,7 +644,7 @@ static int snd_cx88_free(snd_cx88_card_t *chip) | |||
641 | /* | 644 | /* |
642 | * Component Destructor | 645 | * Component Destructor |
643 | */ | 646 | */ |
644 | static void snd_cx88_dev_free(snd_card_t * card) | 647 | static void snd_cx88_dev_free(struct snd_card * card) |
645 | { | 648 | { |
646 | snd_cx88_card_t *chip = card->private_data; | 649 | snd_cx88_card_t *chip = card->private_data; |
647 | 650 | ||
@@ -654,8 +657,9 @@ static void snd_cx88_dev_free(snd_card_t * card) | |||
654 | */ | 657 | */ |
655 | 658 | ||
656 | static int devno; | 659 | static int devno; |
657 | static int __devinit snd_cx88_create(snd_card_t *card, struct pci_dev *pci, | 660 | static int __devinit snd_cx88_create(struct snd_card *card, |
658 | snd_cx88_card_t **rchip) | 661 | struct pci_dev *pci, |
662 | snd_cx88_card_t **rchip) | ||
659 | { | 663 | { |
660 | snd_cx88_card_t *chip; | 664 | snd_cx88_card_t *chip; |
661 | struct cx88_core *core; | 665 | struct cx88_core *core; |
@@ -726,7 +730,7 @@ static int __devinit snd_cx88_create(snd_card_t *card, struct pci_dev *pci, | |||
726 | static int __devinit cx88_audio_initdev(struct pci_dev *pci, | 730 | static int __devinit cx88_audio_initdev(struct pci_dev *pci, |
727 | const struct pci_device_id *pci_id) | 731 | const struct pci_device_id *pci_id) |
728 | { | 732 | { |
729 | snd_card_t *card; | 733 | struct snd_card *card; |
730 | snd_cx88_card_t *chip; | 734 | snd_cx88_card_t *chip; |
731 | int err; | 735 | int err; |
732 | 736 | ||
diff --git a/drivers/media/video/saa7134/saa7134-alsa.c b/drivers/media/video/saa7134/saa7134-alsa.c index 7df5e0826e12..e02e6ee31b78 100644 --- a/drivers/media/video/saa7134/saa7134-alsa.c +++ b/drivers/media/video/saa7134/saa7134-alsa.c | |||
@@ -71,7 +71,7 @@ MODULE_PARM_DESC(enable, "Enable (or not) the SAA7134 capture interface(s)."); | |||
71 | */ | 71 | */ |
72 | 72 | ||
73 | typedef struct snd_card_saa7134 { | 73 | typedef struct snd_card_saa7134 { |
74 | snd_card_t *card; | 74 | struct snd_card *card; |
75 | spinlock_t mixer_lock; | 75 | spinlock_t mixer_lock; |
76 | int mixer_volume[MIXER_ADDR_LAST+1][2]; | 76 | int mixer_volume[MIXER_ADDR_LAST+1][2]; |
77 | int capture_source[MIXER_ADDR_LAST+1][2]; | 77 | int capture_source[MIXER_ADDR_LAST+1][2]; |
@@ -95,10 +95,10 @@ typedef struct snd_card_saa7134_pcm { | |||
95 | 95 | ||
96 | spinlock_t lock; | 96 | spinlock_t lock; |
97 | 97 | ||
98 | snd_pcm_substream_t *substream; | 98 | struct snd_pcm_substream *substream; |
99 | } snd_card_saa7134_pcm_t; | 99 | } snd_card_saa7134_pcm_t; |
100 | 100 | ||
101 | static snd_card_t *snd_saa7134_cards[SNDRV_CARDS]; | 101 | static struct snd_card *snd_saa7134_cards[SNDRV_CARDS]; |
102 | 102 | ||
103 | 103 | ||
104 | /* | 104 | /* |
@@ -251,10 +251,10 @@ out: | |||
251 | * | 251 | * |
252 | */ | 252 | */ |
253 | 253 | ||
254 | static int snd_card_saa7134_capture_trigger(snd_pcm_substream_t * substream, | 254 | static int snd_card_saa7134_capture_trigger(struct snd_pcm_substream * substream, |
255 | int cmd) | 255 | int cmd) |
256 | { | 256 | { |
257 | snd_pcm_runtime_t *runtime = substream->runtime; | 257 | struct snd_pcm_runtime *runtime = substream->runtime; |
258 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; | 258 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
259 | struct saa7134_dev *dev=pcm->dev; | 259 | struct saa7134_dev *dev=pcm->dev; |
260 | int err = 0; | 260 | int err = 0; |
@@ -333,9 +333,9 @@ static int dsp_buffer_free(struct saa7134_dev *dev) | |||
333 | * | 333 | * |
334 | */ | 334 | */ |
335 | 335 | ||
336 | static int snd_card_saa7134_capture_prepare(snd_pcm_substream_t * substream) | 336 | static int snd_card_saa7134_capture_prepare(struct snd_pcm_substream * substream) |
337 | { | 337 | { |
338 | snd_pcm_runtime_t *runtime = substream->runtime; | 338 | struct snd_pcm_runtime *runtime = substream->runtime; |
339 | int bswap, sign; | 339 | int bswap, sign; |
340 | u32 fmt, control; | 340 | u32 fmt, control; |
341 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); | 341 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
@@ -422,9 +422,10 @@ static int snd_card_saa7134_capture_prepare(snd_pcm_substream_t * substream) | |||
422 | * | 422 | * |
423 | */ | 423 | */ |
424 | 424 | ||
425 | static snd_pcm_uframes_t snd_card_saa7134_capture_pointer(snd_pcm_substream_t * substream) | 425 | static snd_pcm_uframes_t |
426 | snd_card_saa7134_capture_pointer(struct snd_pcm_substream * substream) | ||
426 | { | 427 | { |
427 | snd_pcm_runtime_t *runtime = substream->runtime; | 428 | struct snd_pcm_runtime *runtime = substream->runtime; |
428 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; | 429 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
429 | struct saa7134_dev *dev=pcm->dev; | 430 | struct saa7134_dev *dev=pcm->dev; |
430 | 431 | ||
@@ -442,7 +443,7 @@ static snd_pcm_uframes_t snd_card_saa7134_capture_pointer(snd_pcm_substream_t * | |||
442 | * ALSA hardware capabilities definition | 443 | * ALSA hardware capabilities definition |
443 | */ | 444 | */ |
444 | 445 | ||
445 | static snd_pcm_hardware_t snd_card_saa7134_capture = | 446 | static struct snd_pcm_hardware snd_card_saa7134_capture = |
446 | { | 447 | { |
447 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | | 448 | .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED | |
448 | SNDRV_PCM_INFO_BLOCK_TRANSFER | | 449 | SNDRV_PCM_INFO_BLOCK_TRANSFER | |
@@ -465,7 +466,7 @@ static snd_pcm_hardware_t snd_card_saa7134_capture = | |||
465 | .periods_max = 1024, | 466 | .periods_max = 1024, |
466 | }; | 467 | }; |
467 | 468 | ||
468 | static void snd_card_saa7134_runtime_free(snd_pcm_runtime_t *runtime) | 469 | static void snd_card_saa7134_runtime_free(struct snd_pcm_runtime *runtime) |
469 | { | 470 | { |
470 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; | 471 | snd_card_saa7134_pcm_t *pcm = runtime->private_data; |
471 | 472 | ||
@@ -482,8 +483,8 @@ static void snd_card_saa7134_runtime_free(snd_pcm_runtime_t *runtime) | |||
482 | * | 483 | * |
483 | */ | 484 | */ |
484 | 485 | ||
485 | static int snd_card_saa7134_hw_params(snd_pcm_substream_t * substream, | 486 | static int snd_card_saa7134_hw_params(struct snd_pcm_substream * substream, |
486 | snd_pcm_hw_params_t * hw_params) | 487 | struct snd_pcm_hw_params * hw_params) |
487 | { | 488 | { |
488 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); | 489 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
489 | struct saa7134_dev *dev; | 490 | struct saa7134_dev *dev; |
@@ -562,7 +563,7 @@ static int snd_card_saa7134_hw_params(snd_pcm_substream_t * substream, | |||
562 | * | 563 | * |
563 | */ | 564 | */ |
564 | 565 | ||
565 | static int snd_card_saa7134_hw_free(snd_pcm_substream_t * substream) | 566 | static int snd_card_saa7134_hw_free(struct snd_pcm_substream * substream) |
566 | { | 567 | { |
567 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); | 568 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
568 | struct saa7134_dev *dev; | 569 | struct saa7134_dev *dev; |
@@ -588,7 +589,7 @@ static int snd_card_saa7134_hw_free(snd_pcm_substream_t * substream) | |||
588 | * | 589 | * |
589 | */ | 590 | */ |
590 | 591 | ||
591 | static int snd_card_saa7134_capture_close(snd_pcm_substream_t * substream) | 592 | static int snd_card_saa7134_capture_close(struct snd_pcm_substream * substream) |
592 | { | 593 | { |
593 | return 0; | 594 | return 0; |
594 | } | 595 | } |
@@ -603,9 +604,9 @@ static int snd_card_saa7134_capture_close(snd_pcm_substream_t * substream) | |||
603 | * | 604 | * |
604 | */ | 605 | */ |
605 | 606 | ||
606 | static int snd_card_saa7134_capture_open(snd_pcm_substream_t * substream) | 607 | static int snd_card_saa7134_capture_open(struct snd_pcm_substream * substream) |
607 | { | 608 | { |
608 | snd_pcm_runtime_t *runtime = substream->runtime; | 609 | struct snd_pcm_runtime *runtime = substream->runtime; |
609 | snd_card_saa7134_pcm_t *pcm; | 610 | snd_card_saa7134_pcm_t *pcm; |
610 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); | 611 | snd_card_saa7134_t *saa7134 = snd_pcm_substream_chip(substream); |
611 | struct saa7134_dev *dev = saa7134->dev; | 612 | struct saa7134_dev *dev = saa7134->dev; |
@@ -641,7 +642,7 @@ static int snd_card_saa7134_capture_open(snd_pcm_substream_t * substream) | |||
641 | * ALSA capture callbacks definition | 642 | * ALSA capture callbacks definition |
642 | */ | 643 | */ |
643 | 644 | ||
644 | static snd_pcm_ops_t snd_card_saa7134_capture_ops = { | 645 | static struct snd_pcm_ops snd_card_saa7134_capture_ops = { |
645 | .open = snd_card_saa7134_capture_open, | 646 | .open = snd_card_saa7134_capture_open, |
646 | .close = snd_card_saa7134_capture_close, | 647 | .close = snd_card_saa7134_capture_close, |
647 | .ioctl = snd_pcm_lib_ioctl, | 648 | .ioctl = snd_pcm_lib_ioctl, |
@@ -662,7 +663,7 @@ static snd_pcm_ops_t snd_card_saa7134_capture_ops = { | |||
662 | 663 | ||
663 | static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device) | 664 | static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device) |
664 | { | 665 | { |
665 | snd_pcm_t *pcm; | 666 | struct snd_pcm *pcm; |
666 | int err; | 667 | int err; |
667 | 668 | ||
668 | if ((err = snd_pcm_new(saa7134->card, "SAA7134 PCM", device, 0, 1, &pcm)) < 0) | 669 | if ((err = snd_pcm_new(saa7134->card, "SAA7134 PCM", device, 0, 1, &pcm)) < 0) |
@@ -680,7 +681,8 @@ static int snd_card_saa7134_pcm(snd_card_saa7134_t *saa7134, int device) | |||
680 | .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \ | 681 | .get = snd_saa7134_volume_get, .put = snd_saa7134_volume_put, \ |
681 | .private_value = addr } | 682 | .private_value = addr } |
682 | 683 | ||
683 | static int snd_saa7134_volume_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_t * uinfo) | 684 | static int snd_saa7134_volume_info(struct snd_kcontrol * kcontrol, |
685 | struct snd_ctl_elem_info * uinfo) | ||
684 | { | 686 | { |
685 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 687 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
686 | uinfo->count = 2; | 688 | uinfo->count = 2; |
@@ -689,7 +691,8 @@ static int snd_saa7134_volume_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_ | |||
689 | return 0; | 691 | return 0; |
690 | } | 692 | } |
691 | 693 | ||
692 | static int snd_saa7134_volume_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | 694 | static int snd_saa7134_volume_get(struct snd_kcontrol * kcontrol, |
695 | struct snd_ctl_elem_value * ucontrol) | ||
693 | { | 696 | { |
694 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); | 697 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
695 | int addr = kcontrol->private_value; | 698 | int addr = kcontrol->private_value; |
@@ -699,7 +702,8 @@ static int snd_saa7134_volume_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_ | |||
699 | return 0; | 702 | return 0; |
700 | } | 703 | } |
701 | 704 | ||
702 | static int snd_saa7134_volume_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | 705 | static int snd_saa7134_volume_put(struct snd_kcontrol * kcontrol, |
706 | struct snd_ctl_elem_value * ucontrol) | ||
703 | { | 707 | { |
704 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); | 708 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
705 | int change, addr = kcontrol->private_value; | 709 | int change, addr = kcontrol->private_value; |
@@ -730,7 +734,8 @@ static int snd_saa7134_volume_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_ | |||
730 | .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \ | 734 | .get = snd_saa7134_capsrc_get, .put = snd_saa7134_capsrc_put, \ |
731 | .private_value = addr } | 735 | .private_value = addr } |
732 | 736 | ||
733 | static int snd_saa7134_capsrc_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_t * uinfo) | 737 | static int snd_saa7134_capsrc_info(struct snd_kcontrol * kcontrol, |
738 | struct snd_ctl_elem_info * uinfo) | ||
734 | { | 739 | { |
735 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; | 740 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; |
736 | uinfo->count = 2; | 741 | uinfo->count = 2; |
@@ -739,7 +744,8 @@ static int snd_saa7134_capsrc_info(snd_kcontrol_t * kcontrol, snd_ctl_elem_info_ | |||
739 | return 0; | 744 | return 0; |
740 | } | 745 | } |
741 | 746 | ||
742 | static int snd_saa7134_capsrc_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | 747 | static int snd_saa7134_capsrc_get(struct snd_kcontrol * kcontrol, |
748 | struct snd_ctl_elem_value * ucontrol) | ||
743 | { | 749 | { |
744 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); | 750 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
745 | int addr = kcontrol->private_value; | 751 | int addr = kcontrol->private_value; |
@@ -752,7 +758,8 @@ static int snd_saa7134_capsrc_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_ | |||
752 | return 0; | 758 | return 0; |
753 | } | 759 | } |
754 | 760 | ||
755 | static int snd_saa7134_capsrc_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol) | 761 | static int snd_saa7134_capsrc_put(struct snd_kcontrol * kcontrol, |
762 | struct snd_ctl_elem_value * ucontrol) | ||
756 | { | 763 | { |
757 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); | 764 | snd_card_saa7134_t *chip = snd_kcontrol_chip(kcontrol); |
758 | int change, addr = kcontrol->private_value; | 765 | int change, addr = kcontrol->private_value; |
@@ -829,7 +836,7 @@ static int snd_saa7134_capsrc_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_ | |||
829 | return change; | 836 | return change; |
830 | } | 837 | } |
831 | 838 | ||
832 | static snd_kcontrol_new_t snd_saa7134_controls[] = { | 839 | static struct snd_kcontrol_new snd_saa7134_controls[] = { |
833 | SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER), | 840 | SAA713x_VOLUME("Video Volume", 0, MIXER_ADDR_TVTUNER), |
834 | SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER), | 841 | SAA713x_CAPSRC("Video Capture Switch", 0, MIXER_ADDR_TVTUNER), |
835 | SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1), | 842 | SAA713x_VOLUME("Line Volume", 1, MIXER_ADDR_LINE1), |
@@ -848,7 +855,7 @@ SAA713x_CAPSRC("Line Capture Switch", 2, MIXER_ADDR_LINE2), | |||
848 | 855 | ||
849 | static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip) | 856 | static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip) |
850 | { | 857 | { |
851 | snd_card_t *card = chip->card; | 858 | struct snd_card *card = chip->card; |
852 | unsigned int idx; | 859 | unsigned int idx; |
853 | int err; | 860 | int err; |
854 | 861 | ||
@@ -862,7 +869,7 @@ static int snd_card_saa7134_new_mixer(snd_card_saa7134_t * chip) | |||
862 | return 0; | 869 | return 0; |
863 | } | 870 | } |
864 | 871 | ||
865 | static void snd_saa7134_free(snd_card_t * card) | 872 | static void snd_saa7134_free(struct snd_card * card) |
866 | { | 873 | { |
867 | snd_card_saa7134_t *chip = card->private_data; | 874 | snd_card_saa7134_t *chip = card->private_data; |
868 | 875 | ||
@@ -889,7 +896,7 @@ static void snd_saa7134_free(snd_card_t * card) | |||
889 | static int alsa_card_saa7134_create(struct saa7134_dev *dev, int devnum) | 896 | static int alsa_card_saa7134_create(struct saa7134_dev *dev, int devnum) |
890 | { | 897 | { |
891 | 898 | ||
892 | snd_card_t *card; | 899 | struct snd_card *card; |
893 | snd_card_saa7134_t *chip; | 900 | snd_card_saa7134_t *chip; |
894 | int err; | 901 | int err; |
895 | 902 | ||
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index 3261d8bebdd1..6873d9a85ef1 100644 --- a/drivers/media/video/saa7134/saa7134.h +++ b/drivers/media/video/saa7134/saa7134.h | |||
@@ -386,7 +386,7 @@ struct saa7134_dmasound { | |||
386 | unsigned int read_offset; | 386 | unsigned int read_offset; |
387 | unsigned int read_count; | 387 | unsigned int read_count; |
388 | void * priv_data; | 388 | void * priv_data; |
389 | snd_pcm_substream_t *substream; | 389 | struct snd_pcm_substream *substream; |
390 | }; | 390 | }; |
391 | 391 | ||
392 | /* IR input */ | 392 | /* IR input */ |