[ALSA] opl4 - Move EXPORT_SYMBOL() to adjacent to each function
Move EXPORT_SYMBOL() to adjacent to each exported function/variable. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
ac19e19b36
commit
4181e5fe4b
|
@ -43,6 +43,8 @@ void snd_opl4_write(struct snd_opl4 *opl4, u8 reg, u8 value)
|
|||
outb(value, opl4->pcm_port + 1);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_opl4_write);
|
||||
|
||||
u8 snd_opl4_read(struct snd_opl4 *opl4, u8 reg)
|
||||
{
|
||||
snd_opl4_wait(opl4);
|
||||
|
@ -52,6 +54,8 @@ u8 snd_opl4_read(struct snd_opl4 *opl4, u8 reg)
|
|||
return inb(opl4->pcm_port + 1);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_opl4_read);
|
||||
|
||||
void snd_opl4_read_memory(struct snd_opl4 *opl4, char *buf, int offset, int size)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
@ -76,6 +80,8 @@ void snd_opl4_read_memory(struct snd_opl4 *opl4, char *buf, int offset, int size
|
|||
spin_unlock_irqrestore(&opl4->reg_lock, flags);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_opl4_read_memory);
|
||||
|
||||
void snd_opl4_write_memory(struct snd_opl4 *opl4, const char *buf, int offset, int size)
|
||||
{
|
||||
unsigned long flags;
|
||||
|
@ -100,6 +106,8 @@ void snd_opl4_write_memory(struct snd_opl4 *opl4, const char *buf, int offset, i
|
|||
spin_unlock_irqrestore(&opl4->reg_lock, flags);
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_opl4_write_memory);
|
||||
|
||||
static void snd_opl4_enable_opl4(struct snd_opl4 *opl4)
|
||||
{
|
||||
outb(OPL3_REG_MODE, opl4->fm_port + 2);
|
||||
|
@ -256,10 +264,6 @@ int snd_opl4_create(struct snd_card *card,
|
|||
return 0;
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL(snd_opl4_write);
|
||||
EXPORT_SYMBOL(snd_opl4_read);
|
||||
EXPORT_SYMBOL(snd_opl4_write_memory);
|
||||
EXPORT_SYMBOL(snd_opl4_read_memory);
|
||||
EXPORT_SYMBOL(snd_opl4_create);
|
||||
|
||||
static int __init alsa_opl4_init(void)
|
||||
|
|
Loading…
Reference in New Issue