diff options
author | Simon Glass <sjg@chromium.org> | 2016-01-17 16:11:59 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-01-24 12:09:42 +0800 |
commit | 25d5352c71dcc599030a4a764d8087185ed537d3 (patch) | |
tree | 2fa7d292b53be82731264d453b473d2e17782ef5 /arch/x86/include/asm/arch-ivybridge/bd82x6x.h | |
parent | 98655f3a8d23d322d91ebb1897ff02a6e8a46b10 (diff) |
x86: ivybridge: Use syscon for the GMA device
Until we have a proper video uclass we can use syscon to handle the GMA
device, and avoid the special device tree and PCI searching. Update the code
to work this way.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/include/asm/arch-ivybridge/bd82x6x.h')
-rw-r--r-- | arch/x86/include/asm/arch-ivybridge/bd82x6x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/arch-ivybridge/bd82x6x.h b/arch/x86/include/asm/arch-ivybridge/bd82x6x.h index 2607da63ea..e866580046 100644 --- a/arch/x86/include/asm/arch-ivybridge/bd82x6x.h +++ b/arch/x86/include/asm/arch-ivybridge/bd82x6x.h @@ -7,6 +7,6 @@ #ifndef _ASM_ARCH_BD82X6X_H #define _ASM_ARCH_BD82X6X_H -int gma_func0_init(struct udevice *dev, const void *blob, int node); +int gma_func0_init(struct udevice *dev); #endif |