diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-11-03 23:23:37 -0800 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2015-11-05 08:22:21 +0100 |
commit | 1caf934a0504013874238445daaea7f32c36ab04 (patch) | |
tree | 4dc939261773f72f7802891dd7104cd44141b402 /board/bf533-stamp | |
parent | 8168ee38c26be586012743ded262145081d49d05 (diff) | |
download | u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.zip u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.tar.gz u-boot-imx-1caf934a0504013874238445daaea7f32c36ab04.tar.bz2 |
video: Drop DEV_FLAGS_SYSTEM flag
DEV_FLAGS_SYSTEM does not have any actual meaning, hence drop it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'board/bf533-stamp')
-rw-r--r-- | board/bf533-stamp/video.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/board/bf533-stamp/video.c b/board/bf533-stamp/video.c index 75b8adc..a451f97 100644 --- a/board/bf533-stamp/video.c +++ b/board/bf533-stamp/video.c @@ -165,7 +165,6 @@ int drv_video_init(void) memset(&videodev, 0, sizeof(videodev)); strcpy(videodev.name, "video"); videodev.ext = DEV_EXT_VIDEO; - videodev.flags = DEV_FLAGS_SYSTEM; return stdio_register(&videodev); } |