gpio.h 289 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2012, Google Inc. All rights reserved.
  4. */
  5. #ifndef _X86_GPIO_H_
  6. #define _X86_GPIO_H_
  7. #include <asm-generic/gpio.h>
  8. struct ich6_bank_plat {
  9. uint16_t base_addr;
  10. const char *bank_name;
  11. int offset;
  12. };
  13. #endif /* _X86_GPIO_H_ */