Done with sed and God Lines. Only done for C-like code for now. Change-Id: I38eaffa391ed5971217ffad74a312b1641e431c9 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40051 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
12 lines
272 B
C
12 lines
272 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#ifndef _INTEL_WIFI_CHIP_H_
|
|
#define _INTEL_WIFI_CHIP_H_
|
|
|
|
struct drivers_intel_wifi_config {
|
|
unsigned int wake; /* Wake pin for ACPI _PRW */
|
|
};
|
|
|
|
#endif /* _INTEL_WIFI_CHIP_H_ */
|