摘要: klist.h #ifndef _KLIST_H_ #define _KLIST_H_ struct list_head { struct list_head *next, *prev; }; #define LIST_HEAD_INIT(name) { &(name), &(name) } #de 阅读全文
posted @ 2020-01-09 14:41 耶 阅读(187) 评论(0) 推荐(0)
摘要: #include <linux/module.h>#include <linux/init.h>#include <linux/platform_device.h>#include <linux/gpio.h>#include <linux/delay.h>#include <linux/regul 阅读全文
posted @ 2020-01-09 09:19 耶 阅读(233) 评论(0) 推荐(0)