aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/info.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/core/info.c')
-rw-r--r--sound/core/info.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sound/core/info.c b/sound/core/info.c
index 2582b74d319..9c288539e99 100644
--- a/sound/core/info.c
+++ b/sound/core/info.c
@@ -111,12 +111,16 @@ int snd_iprintf(struct snd_info_buffer *buffer, char *fmt,...)
111 return res; 111 return res;
112} 112}
113 113
114EXPORT_SYMBOL(snd_iprintf);
115
114/* 116/*
115 117
116 */ 118 */
117 119
118static struct proc_dir_entry *snd_proc_root = NULL; 120static struct proc_dir_entry *snd_proc_root = NULL;
119struct snd_info_entry *snd_seq_root = NULL; 121struct snd_info_entry *snd_seq_root = NULL;
122EXPORT_SYMBOL(snd_seq_root);
123
120#ifdef CONFIG_SND_OSSEMUL 124#ifdef CONFIG_SND_OSSEMUL
121struct snd_info_entry *snd_oss_root = NULL; 125struct snd_info_entry *snd_oss_root = NULL;
122#endif 126#endif
@@ -687,6 +691,8 @@ int snd_info_get_line(struct snd_info_buffer *buffer, char *line, int len)
687 return 0; 691 return 0;
688} 692}
689 693
694EXPORT_SYMBOL(snd_info_get_line);
695
690/** 696/**
691 * snd_info_get_str - parse a string token 697 * snd_info_get_str - parse a string token
692 * @dest: the buffer to store the string token 698 * @dest: the buffer to store the string token
@@ -723,6 +729,8 @@ char *snd_info_get_str(char *dest, char *src, int len)
723 return src; 729 return src;
724} 730}
725 731
732EXPORT_SYMBOL(snd_info_get_str);
733
726/** 734/**
727 * snd_info_create_entry - create an info entry 735 * snd_info_create_entry - create an info entry
728 * @name: the proc file name 736 * @name: the proc file name
@@ -774,6 +782,8 @@ struct snd_info_entry *snd_info_create_module_entry(struct module * module,
774 return entry; 782 return entry;
775} 783}
776 784
785EXPORT_SYMBOL(snd_info_create_module_entry);
786
777/** 787/**
778 * snd_info_create_card_entry - create an info entry for the given card 788 * snd_info_create_card_entry - create an info entry for the given card
779 * @card: the card instance 789 * @card: the card instance
@@ -797,6 +807,8 @@ struct snd_info_entry *snd_info_create_card_entry(struct snd_card *card,
797 return entry; 807 return entry;
798} 808}
799 809
810EXPORT_SYMBOL(snd_info_create_card_entry);
811
800static int snd_info_dev_free_entry(struct snd_device *device) 812static int snd_info_dev_free_entry(struct snd_device *device)
801{ 813{
802 struct snd_info_entry *entry = device->device_data; 814 struct snd_info_entry *entry = device->device_data;
@@ -867,6 +879,8 @@ int snd_card_proc_new(struct snd_card *card, const char *name,
867 return 0; 879 return 0;
868} 880}
869 881
882EXPORT_SYMBOL(snd_card_proc_new);
883
870/** 884/**
871 * snd_info_free_entry - release the info entry 885 * snd_info_free_entry - release the info entry
872 * @entry: the info entry 886 * @entry: the info entry
@@ -883,6 +897,8 @@ void snd_info_free_entry(struct snd_info_entry * entry)
883 kfree(entry); 897 kfree(entry);
884} 898}
885 899
900EXPORT_SYMBOL(snd_info_free_entry);
901
886/** 902/**
887 * snd_info_register - register the info entry 903 * snd_info_register - register the info entry
888 * @entry: the info entry 904 * @entry: the info entry
@@ -913,6 +929,8 @@ int snd_info_register(struct snd_info_entry * entry)
913 return 0; 929 return 0;
914} 930}
915 931
932EXPORT_SYMBOL(snd_info_register);
933
916/** 934/**
917 * snd_info_unregister - de-register the info entry 935 * snd_info_unregister - de-register the info entry
918 * @entry: the info entry 936 * @entry: the info entry
@@ -937,6 +955,8 @@ int snd_info_unregister(struct snd_info_entry * entry)
937 return 0; 955 return 0;
938} 956}
939 957
958EXPORT_SYMBOL(snd_info_unregister);
959
940/* 960/*
941 961
942 */ 962 */