report_platform.h 357 B

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