提交 44b3b3ad 编写于 作者: wuyangyong's avatar wuyangyong

Add more device type.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1838 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 db82f30d
......@@ -357,6 +357,9 @@ static long _list_device(struct rt_list_node *list)
"I2C Device",
"USB Slave Device",
"USB Host Bus",
"SPI Bus",
"SPI Device",
"SDIO Bus",
"Unknown"
};
......@@ -365,7 +368,8 @@ static long _list_device(struct rt_list_node *list)
for (node = list->next; node != list; node = node->next)
{
device = (struct rt_device*)(rt_list_entry(node, struct rt_object, list));
rt_kprintf("%-8s %-8s \n", device->parent.name, device_type_str[device->type]);
rt_kprintf("%-8s %-8s \n", device->parent.name,
(device->type <= RT_Device_Class_Unknown)?device_type_str[device->type]:device_type_str[RT_Device_Class_Unknown]);
}
return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册