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