linux-2.6.33/snd_info_create_module_entry()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#ja8fa899]
#backlinks
*説明 [#k4ecd1a9]
-パス: [[linux-2.6.33/sound/core/info.c]]
-FIXME: これは何?
--説明
**引数 [#l3a173dd]
-struct module * module
--
--[[linux-2.6.33/module]]
-const char *name
--
-struct snd_info_entry *parent
--
--[[linux-2.6.33/snd_info_entry]]
**返り値 [#i1348829]
-struct snd_info_entry *
--
**参考 [#ffa5b819]
*実装 [#rb2fd37f]
/**
* snd_info_create_module_entry - create an info entry f...
* @module: the module pointer
* @name: the file name
* @parent: the parent directory
*
* Creates a new info entry and assigns it to the given ...
*
* Returns the pointer of the new instance, or NULL on f...
*/
struct snd_info_entry *snd_info_create_module_entry(stru...
const char *name,
struct snd_info_entry *parent)
{
struct snd_info_entry *entry = snd_info_create_entry(na...
-
--[[linux-2.6.33/snd_info_entry]]
-
--[[linux-2.6.33/snd_info_create_entry()]]
if (entry) {
entry->module = module;
entry->parent = parent;
}
return entry;
}
EXPORT_SYMBOL(snd_info_create_module_entry);
-ライセンスに関係なくモジュールにシンボルを公開する。
--[[linux-2.6.33/EXPORT_SYMBOL()]]
*コメント [#j1bbaf1f]
終了行:
*参照元 [#ja8fa899]
#backlinks
*説明 [#k4ecd1a9]
-パス: [[linux-2.6.33/sound/core/info.c]]
-FIXME: これは何?
--説明
**引数 [#l3a173dd]
-struct module * module
--
--[[linux-2.6.33/module]]
-const char *name
--
-struct snd_info_entry *parent
--
--[[linux-2.6.33/snd_info_entry]]
**返り値 [#i1348829]
-struct snd_info_entry *
--
**参考 [#ffa5b819]
*実装 [#rb2fd37f]
/**
* snd_info_create_module_entry - create an info entry f...
* @module: the module pointer
* @name: the file name
* @parent: the parent directory
*
* Creates a new info entry and assigns it to the given ...
*
* Returns the pointer of the new instance, or NULL on f...
*/
struct snd_info_entry *snd_info_create_module_entry(stru...
const char *name,
struct snd_info_entry *parent)
{
struct snd_info_entry *entry = snd_info_create_entry(na...
-
--[[linux-2.6.33/snd_info_entry]]
-
--[[linux-2.6.33/snd_info_create_entry()]]
if (entry) {
entry->module = module;
entry->parent = parent;
}
return entry;
}
EXPORT_SYMBOL(snd_info_create_module_entry);
-ライセンスに関係なくモジュールにシンボルを公開する。
--[[linux-2.6.33/EXPORT_SYMBOL()]]
*コメント [#j1bbaf1f]
ページ名: