summaryrefslogtreecommitdiff
path: root/src/drivers/generic
diff options
context:
space:
mode:
authorDaniel Kurtz <djkurtz@chromium.org>2018-02-12 13:10:35 -0700
committerMartin Roth <martinroth@google.com>2018-02-14 17:00:59 +0000
commit2242919177317dd7827a4fc8f04c17dd8a4f8b32 (patch)
tree9e9be44276f88449a490631ec890ee69bdae236b /src/drivers/generic
parent030b5bb7c39eac9fdbdf4b6016503b9ed4d1a74b (diff)
downloadcoreboot-2242919177317dd7827a4fc8f04c17dd8a4f8b32.tar.xz
drivers/adau7002: Fix include file
Add missing license and include guard and remove unneeded include. BUG=b:72121803 TEST=compiles Change-Id: Ic359ed262086596a98131669f8eecd531857187a Signed-off-by: Daniel Kurtz <djkurtz@chromium.org> Reviewed-on: https://review.coreboot.org/23721 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/drivers/generic')
-rw-r--r--src/drivers/generic/adau7002/chip.h20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/drivers/generic/adau7002/chip.h b/src/drivers/generic/adau7002/chip.h
index 809a680dee..95b4d1ec7f 100644
--- a/src/drivers/generic/adau7002/chip.h
+++ b/src/drivers/generic/adau7002/chip.h
@@ -1,4 +1,22 @@
-#include <arch/acpi_device.h>
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2018 Google LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __I2C_GENERIC_ADAU7002_CHIP_H__
+#define __I2C_GENERIC_ADAU7002_CHIP_H__
struct drivers_generic_adau7002_config {
};
+
+#endif /* __I2C_GENERIC_ADAU7002_CHIP_H__ */