X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fsound%2Finfo.h;h=1d76bf3cb05e0f5df00d003c9bb219f1379df9ab;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=e9efd4e4e29cad20476041427bb0e56692de6b31;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/include/sound/info.h b/include/sound/info.h index e9efd4e4e..1d76bf3cb 100644 --- a/include/sound/info.h +++ b/include/sound/info.h @@ -131,11 +131,6 @@ int snd_info_card_free(snd_card_t * card); int snd_info_register(snd_info_entry_t * entry); int snd_info_unregister(snd_info_entry_t * entry); -struct proc_dir_entry *snd_create_proc_entry(const char *name, mode_t mode, - struct proc_dir_entry *parent); -void snd_remove_proc_entry(struct proc_dir_entry *parent, - struct proc_dir_entry *de); - /* for card drivers */ int snd_card_proc_new(snd_card_t *card, const char *name, snd_info_entry_t **entryp); @@ -171,10 +166,6 @@ static inline int snd_info_card_free(snd_card_t * card) { return 0; } static inline int snd_info_register(snd_info_entry_t * entry) { return 0; } static inline int snd_info_unregister(snd_info_entry_t * entry) { return 0; } -static inline struct proc_dir_entry *snd_create_proc_entry(const char *name, mode_t mode, struct proc_dir_entry *parent) { return NULL; } -static inline void snd_remove_proc_entry(struct proc_dir_entry *parent, - struct proc_dir_entry *de) { ; } - #define snd_card_proc_new(card,name,entryp) 0 /* always success */ #define snd_info_set_text_ops(entry,private_data,read_size,read) /*NOP*/