分类: LINUX
2016-03-03 11:20:15
编译LDD3中的scull出现错误,错误: ‘SPIN_LOCK_UNLOCKED’未声明(不在函数内)
处理办法:
将static spinlock_t scull_u_lock = SPIN_LOCK_UNLOCKED;
改为static DEFINE_SPINLOCK(scull_u_lock);
再次编译通过。
原因:
SPIN_LOCK_UNLOCKED has been deprecated since 2.6.19 and will get removed in 2.6.39。SPIN_LOCK_UNLOCKED已被弃用自2.6.19,将在2.6.39中删除。
(擦,我用的是3.0.0的内核,已经被删除了)
备忘,仅供参考。