您的位置:首页 > 运维架构 > Linux

Linux Kernel设备驱动模型之平台设备

2017-03-25 13:44 281 查看
 struct platform_device {
 const char *name;
 int  id;
 bool  id_auto;
 struct device dev;
 u32  num_resources;
 struct resource *resource;

 const struct platform_device_id *id_entry;
 char *driver_override; /* Driver name to force a match */
 /* MFD cell pointer */
 struct mfd_cell *mfd_cell;
 /* arch specific additions */
 struct pdev_archdata archdata;
};

 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: