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