fsl_devdis.h 286 B

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