rtc-ds2404.h 467 B

1234567891011121314151617181920
  1. /*
  2. * ds2404.h - platform data structure for the DS2404 RTC.
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. *
  8. * Copyright (C) 2012 Sven Schnelle <svens@stackframe.org>
  9. */
  10. #ifndef __LINUX_DS2404_H
  11. #define __LINUX_DS2404_H
  12. struct ds2404_platform_data {
  13. unsigned int gpio_rst;
  14. unsigned int gpio_clk;
  15. unsigned int gpio_dq;
  16. };
  17. #endif