1. 理解kobject,kset的之间的关系。
2. 写一个bus驱动,并且写/注册一个device驱动,挂接在这个bus上,并观察bus的match函数被调用。
3. 写一个driver使用上面这个device,也观察bus的match函数被调用。
4. 实现bus,device,driver 3种 attribute.
5,写/注册一个device的bus为platform,观察platform bus的match函数的调用
写一个driver使用上面这个device, 也观察bus的match函数被调用。并且查看 这个match函数,怎么调用到driver中的probe函数的。