summaryrefslogtreecommitdiff
path: root/board/mpl/pati
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2015-11-03 23:23:37 -0800
committerAnatolij Gustschin <agust@denx.de>2015-11-05 08:22:21 +0100
commit1caf934a0504013874238445daaea7f32c36ab04 (patch)
tree4dc939261773f72f7802891dd7104cd44141b402 /board/mpl/pati
parent8168ee38c26be586012743ded262145081d49d05 (diff)
downloadu-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/mpl/pati')
-rw-r--r--board/mpl/pati/pati.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/mpl/pati/pati.c b/board/mpl/pati/pati.c
index b9d88ee..958cdec 100644
--- a/board/mpl/pati/pati.c
+++ b/board/mpl/pati/pati.c
@@ -566,7 +566,7 @@ void pci_con_connect(void)
irq_install_handler (0x2, (interrupt_handler_t *) pci_dorbell_irq,NULL);
memset (&pci_con_dev, 0, sizeof (pci_con_dev));
strcpy (pci_con_dev.name, "pci_con");
- pci_con_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_SYSTEM;
+ pci_con_dev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT;
pci_con_dev.putc = pci_con_putc;
pci_con_dev.puts = pci_con_puts;
pci_con_dev.getc = pci_con_getc;