hsi_core.h 450 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * HSI framework internal interfaces,
  4. *
  5. * Copyright (C) 2010 Nokia Corporation. All rights reserved.
  6. *
  7. * Contact: Carlos Chinea <carlos.chinea@nokia.com>
  8. */
  9. #ifndef __LINUX_HSI_CORE_H__
  10. #define __LINUX_HSI_CORE_H__
  11. #include <linux/hsi/hsi.h>
  12. struct hsi_cl_info {
  13. struct list_head list;
  14. struct hsi_board_info info;
  15. };
  16. extern struct list_head hsi_board_list;
  17. #endif /* __LINUX_HSI_CORE_H__ */