src/{drivers/vpd,include/device/dram}: Add missing 'include <stdint.h>'
Change-Id: Ida74a55b105282d86368f529cfce3523e0e97b02 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36174 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
91841af6b2
commit
749c395f93
|
@ -7,6 +7,8 @@
|
|||
#ifndef __VPD_H__
|
||||
#define __VPD_H__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#define GOOGLE_VPD_2_0_OFFSET 0x600
|
||||
|
||||
enum vpd_region {
|
||||
|
|
|
@ -18,6 +18,8 @@
|
|||
#ifndef DEVICE_DRAM_COMMON_H
|
||||
#define DEVICE_DRAM_COMMON_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/**
|
||||
* \brief Convenience definitions for TCK values
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue