Merge pull request #548 from GalaIO/master

[Kernel] change to open the console device and then set the console device.
This commit is contained in:
Bernard Xiong 2015-09-11 09:04:03 +08:00
commit 0da4930cc9
1 changed files with 1 additions and 1 deletions

View File

@ -1073,8 +1073,8 @@ rt_device_t rt_console_set_device(const char *name)
} }
/* set new console device */ /* set new console device */
rt_device_open(new, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_STREAM);
_console_device = new; _console_device = new;
rt_device_open(_console_device, RT_DEVICE_OFLAG_RDWR | RT_DEVICE_FLAG_STREAM);
} }
return old; return old;