摘要:
1. 内核版本 5.2.0 2. 请看devm_regmap_init_i2c (include/linux/regmap.h) 3. 看看__regmap_lockdep_wrapper 4. KBUILD_BASENAME的定义在哪里? 在编译时由编译选项-D提供,如此处为: -DKBUILD_ 阅读全文
posted @ 2019-08-14 15:16
Jello
阅读(2490)
评论(0)
推荐(0)
摘要:
1. 定义如下: (include/linux/kernel.h) #define IS_ALIGNED(x, a) (((x) & ((typeof(x))(a) - 1)) == 0) 2. 实例拆解 IS_ALIGNED(reg, map->reg_stride) -> (((reg) & ( 阅读全文
posted @ 2019-08-14 10:17
Jello
阅读(841)
评论(0)
推荐(0)