linux-4.4.1/cdev_del()
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*参照元 [#ee1eec56]
#backlinks
*説明 [#we0c44fd]
-パス: [[linux-4.4.1/fs/char_dev.c]]
-FIXME: これは何?
--説明
**引数 [#o1281768]
-struct cdev *p
--
--[[linux-4.4.1/cdev]]
**返り値 [#p4b5d797]
-なし
**参考 [#g7e27565]
*実装 [#t02d4904]
/**
* cdev_del() - remove a cdev from the system
* @p: the cdev structure to be removed
*
* cdev_del() removes @p from the system, possibly freei...
* itself.
*/
void cdev_del(struct cdev *p)
{
cdev_unmap(p->dev, p->count);
kobject_put(&p->kobj);
-
--[[linux-4.4.1/cdev_unmap()]]
--[[linux-4.4.1/kobject_put()]]
}
...
EXPORT_SYMBOL(cdev_del);
-
--[[linux-4.4.1/EXPORT_SYMBOL()]]
*コメント [#i43db932]
終了行:
*参照元 [#ee1eec56]
#backlinks
*説明 [#we0c44fd]
-パス: [[linux-4.4.1/fs/char_dev.c]]
-FIXME: これは何?
--説明
**引数 [#o1281768]
-struct cdev *p
--
--[[linux-4.4.1/cdev]]
**返り値 [#p4b5d797]
-なし
**参考 [#g7e27565]
*実装 [#t02d4904]
/**
* cdev_del() - remove a cdev from the system
* @p: the cdev structure to be removed
*
* cdev_del() removes @p from the system, possibly freei...
* itself.
*/
void cdev_del(struct cdev *p)
{
cdev_unmap(p->dev, p->count);
kobject_put(&p->kobj);
-
--[[linux-4.4.1/cdev_unmap()]]
--[[linux-4.4.1/kobject_put()]]
}
...
EXPORT_SYMBOL(cdev_del);
-
--[[linux-4.4.1/EXPORT_SYMBOL()]]
*コメント [#i43db932]
ページ名: