src/acpi: Add guards on all header files

Change-Id: I1b2d82a85194df6660bc041af8a690acc5469d02
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/20735
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
Martin Roth 2017-07-23 21:07:50 -06:00 committed by Stefan Reinauer
parent 7a4c02145d
commit 1cd303a6fc
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@
* GNU General Public License for more details.
*/
#ifndef __ACPI_SATA_H__
#define __ACPI_SATA_H__
#include <stdint.h>
void generate_sata_ssdt_ports(const char *scope, uint32_t enable_map);
#endif