diff options
author | Ronald G. Minnich <rminnich@google.com> | 2013-04-24 09:50:56 -0700 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-07-10 02:39:42 +0200 |
commit | 78c3e3355003ff2c0c2917f445e0c8dd3e083f52 (patch) | |
tree | aee7fd72df21046e36ffa80d1143ba25e674022a /src/lib | |
parent | b2893a0169ce603926bf13465432a15c4526de97 (diff) |
FUI: reorganize include files
We've got enough of a handle on this to realize some things:
drm_dp_helper.h is by design device and architecture independent
i915.h is common to most intel graphics chipsets going back several years
i915_reg.h is as well
Move these files to src/include/device, and adjust the .c files accordingly.
Change-Id: I07512b3695fea0b22949074b467986420783d62a
Signed-off-by: Ronald G. Minnich <rminnich@google.com>
Signed-off-by: Gabe Black <gabeblack@chromium.org>
Reviewed-on: http://review.coreboot.org/3637
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/edid.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/edid.c b/src/lib/edid.c index c4c5e455a6..d0e8b98b52 100644 --- a/src/lib/edid.c +++ b/src/lib/edid.c @@ -1395,7 +1395,6 @@ int decode_edid(unsigned char *edid, int size, struct edid *out) * Take an edid, and create a framebuffer. Set vbe_valid to 1. */ -void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr); void set_vbe_mode_info_valid(struct edid *edid, uintptr_t fb_addr) { edid_fb.physical_address = fb_addr; |