Done with sed and God Lines. Only done for C-like code for now. Change-Id: I3d872f63d56711d39c8320ace2642cea2a23f545 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40130 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
16 lines
370 B
C
16 lines
370 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* This file is part of the coreboot project. */
|
|
|
|
#ifndef __SOC_CAVIUM_COMMON_PCI_CHIP_H
|
|
#define __SOC_CAVIUM_COMMON_PCI_CHIP_H
|
|
|
|
struct soc_cavium_common_pci_config {
|
|
/**
|
|
* Mark the PCI device as secure.
|
|
* It will be visible from EL3, but hidden in EL2-0.
|
|
*/
|
|
u8 secure;
|
|
};
|
|
|
|
#endif /* __SOC_CAVIUM_COMMON_PCI_CHIP_H */
|