Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28473
b: refs/heads/master
c: fa325eb
h: refs/heads/master
i:
  28471: 1d5b68e
v: v3
  • Loading branch information
Takashi Iwai authored and Jaroslav Kysela committed Jun 22, 2006
1 parent b153fb2 commit 9d5d039
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 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: 95ff17564b6db34cad0cd67678fb79174e77531e
refs/heads/master: fa325eb3afc3cdaf7fba6ee3eaf05b243f5614a3
30 changes: 14 additions & 16 deletions trunk/sound/drivers/vx/vx_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ int snd_vx_check_reg_bit(struct vx_core *chip, int reg, int mask, int bit, int t
return -EIO;
}

EXPORT_SYMBOL(snd_vx_check_reg_bit);

/*
* vx_send_irq_dsp - set command irq bit
* @num: the requested IRQ type, IRQ_XXX
Expand Down Expand Up @@ -465,6 +467,8 @@ int snd_vx_load_boot_image(struct vx_core *chip, const struct firmware *boot)
return 0;
}

EXPORT_SYMBOL(snd_vx_load_boot_image);

/*
* vx_test_irq_src - query the source of interrupts
*
Expand Down Expand Up @@ -545,6 +549,7 @@ irqreturn_t snd_vx_irq_handler(int irq, void *dev, struct pt_regs *regs)
return IRQ_HANDLED;
}

EXPORT_SYMBOL(snd_vx_irq_handler);

/*
*/
Expand Down Expand Up @@ -657,6 +662,8 @@ int snd_vx_dsp_boot(struct vx_core *chip, const struct firmware *boot)
return 0;
}

EXPORT_SYMBOL(snd_vx_dsp_boot);

/**
* snd_vx_dsp_load - load the DSP image
*/
Expand Down Expand Up @@ -705,6 +712,8 @@ int snd_vx_dsp_load(struct vx_core *chip, const struct firmware *dsp)
return 0;
}

EXPORT_SYMBOL(snd_vx_dsp_load);

#ifdef CONFIG_PM
/*
* suspend
Expand All @@ -721,6 +730,8 @@ int snd_vx_suspend(struct vx_core *chip, pm_message_t state)
return 0;
}

EXPORT_SYMBOL(snd_vx_suspend);

/*
* resume
*/
Expand All @@ -747,6 +758,7 @@ int snd_vx_resume(struct vx_core *chip)
return 0;
}

EXPORT_SYMBOL(snd_vx_resume);
#endif

/**
Expand Down Expand Up @@ -790,6 +802,8 @@ struct vx_core *snd_vx_create(struct snd_card *card, struct snd_vx_hardware *hw,
return chip;
}

EXPORT_SYMBOL(snd_vx_create);

/*
* module entries
*/
Expand All @@ -804,19 +818,3 @@ static void __exit alsa_vx_core_exit(void)

module_init(alsa_vx_core_init)
module_exit(alsa_vx_core_exit)

/*
* exports
*/
EXPORT_SYMBOL(snd_vx_check_reg_bit);
EXPORT_SYMBOL(snd_vx_create);
EXPORT_SYMBOL(snd_vx_setup_firmware);
EXPORT_SYMBOL(snd_vx_free_firmware);
EXPORT_SYMBOL(snd_vx_irq_handler);
EXPORT_SYMBOL(snd_vx_dsp_boot);
EXPORT_SYMBOL(snd_vx_dsp_load);
EXPORT_SYMBOL(snd_vx_load_boot_image);
#ifdef CONFIG_PM
EXPORT_SYMBOL(snd_vx_suspend);
EXPORT_SYMBOL(snd_vx_resume);
#endif
3 changes: 3 additions & 0 deletions trunk/sound/drivers/vx/vx_hwdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,3 +250,6 @@ void snd_vx_free_firmware(struct vx_core *chip)
}

#endif /* SND_VX_FW_LOADER */

EXPORT_SYMBOL(snd_vx_setup_firmware);
EXPORT_SYMBOL(snd_vx_free_firmware);

0 comments on commit 9d5d039

Please sign in to comment.