coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
sram.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_INTEL_COMMON_BLOCK_SRAM_H
4 #define SOC_INTEL_COMMON_BLOCK_SRAM_H
5 
6 #include <device/device.h>
7 
8 /* This function is specific to soc and defined as common weak function */
9 void soc_sram_init(struct device *dev);
10 
11 #endif /* SOC_INTEL_COMMON_BLOCK_SRAM_H */
void soc_sram_init(struct device *dev)
Definition: sram.c:9
Definition: device.h:107