fsl_devdis.h 286 B

123456789101112131415161718
  1. /*
  2. * Copyright 2015 Freescale Semiconductor, Inc.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __FSL_DEVDIS_H_
  7. #define __FSL_DEVDIS_H_
  8. struct devdis_table {
  9. char name[32];
  10. u32 offset;
  11. u32 mask;
  12. };
  13. void device_disable(const struct devdis_table *tbl, uint32_t num);
  14. #endif