Browse Source

cleanup output message.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@198 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 15 years ago
parent
commit
bd533b3743
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/device.c

+ 2 - 2
src/device.c

@@ -81,8 +81,8 @@ rt_err_t rt_device_init_all()
 			result = init(device);
 			if (result != RT_EOK)
 			{
-				rt_kprintf("init device:%s error:\n", device->parent.name);
-				rt_kprintf("error code:%d\n", result);
+				rt_kprintf("To initialize device:%s failed. The error code is %d\n", 
+					device->parent.name, result);
 			}
 			else
 			{