From 2242919177317dd7827a4fc8f04c17dd8a4f8b32 Mon Sep 17 00:00:00 2001 From: Daniel Kurtz Date: Mon, 12 Feb 2018 13:10:35 -0700 Subject: 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 Reviewed-on: https://review.coreboot.org/23721 Reviewed-by: Aaron Durbin Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel --- src/drivers/generic/adau7002/chip.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'src/drivers/generic/adau7002') 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 +/* + * 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__ */ -- cgit v1.2.3