xref: /openbmc/u-boot/arch/x86/include/asm/report_platform.h (revision 7b0789e8fcfe052113bcf06dad1d6da6b4d6b108)
1 /*
2  * Copyright (c) 2016 Google, Inc
3  *
4  * SPDX-License-Identifier:	GPL-2.0
5  */
6 
7 #ifndef __ARCH_REPORT_PLATFORM_H
8 #define __ARCH_REPORT_PLATFORM_H
9 
10 /**
11  * report_platform_info() - Report platform information
12  *
13  * This reports information about the CPU and chipset.
14  *
15  * @dev:	Northbridge device
16  */
17 void report_platform_info(struct udevice *dev);
18 
19 #endif
20