common.h 416 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2014 Marvell Technology Group Ltd.
  4. *
  5. * Sebastian Hesselbarth <[email protected]>
  6. * Alexandre Belloni <[email protected]>
  7. */
  8. #ifndef __BERLIN2_COMMON_H
  9. #define __BERLIN2_COMMON_H
  10. struct berlin2_gate_data {
  11. const char *name;
  12. const char *parent_name;
  13. u8 bit_idx;
  14. unsigned long flags;
  15. };
  16. #endif /* BERLIN2_COMMON_H */