删除冗余的部分.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-06-05 13:14:58 +08:00
parent d7e0bb2a61
commit 979ee1c2d6
1 changed files with 1 additions and 2 deletions

View File

@ -63,7 +63,7 @@ reg = <address1 size1 [address2 size2] [address3 size3]...>;
* interrutt-controller属性为空表明“我是中断控制器” * interrutt-controller属性为空表明“我是中断控制器”
* #interrupt-cells表明连接此中断控制器的设备的中断属性的 cell 大小,也就是 interrupt = <> 属性的 cell 大小; * #interrupt-cells表明连接此中断控制器的设备的中断属性的 cell 大小,也就是 interrupt = <> 属性的 cell 大小;
* interrupt-parent设备节点通过这个关键字指定其依附的中断控制器 phandle如果没有指定则继承父节点的 interrupt-parent 配置; * interrupt-parent设备节点通过这个关键字指定其依附的中断控制器 phandle如果没有指定则继承父节点的 interrupt-parent 配置;
* interrupt设备节点里使用一般包含中断号、触发方法等。具体有多少个 cell#interrupt-cells 决定,每个 cell 的具体含义,一般由驱动的实决定,一般会在绑定文件里说明 * interrupt设备节点里使用一般包含中断号、触发方法等。具体有多少个 cell#interrupt-cells 决定,每个 cell 的具体含义,一般由驱动决定。
### DTS 示例 ### DTS 示例
@ -410,7 +410,6 @@ int of_property_read_u32_index(const struct device_node *np,
const char *propname, const char *propname,
u32 index, u32 index,
u32 *out_value); u32 *out_value);
``` ```
**说明:** **说明:**