- 追加された行はこの色です。
- 削除された行はこの色です。
*参照元 [#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 freeing the structure
* 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()]]
}
*コメント [#i43db932]