mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
7418a11989
[akpm@linux-foundation.org: fix warning] Signed-off-by: Sven Schnelle <svens@stackframe.org> Cc: Alessandro Zummo <a.zummo@towertech.it> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
20 lines
467 B
C
20 lines
467 B
C
/*
|
|
* ds2404.h - platform data structure for the DS2404 RTC.
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* Copyright (C) 2012 Sven Schnelle <svens@stackframe.org>
|
|
*/
|
|
|
|
#ifndef __LINUX_DS2404_H
|
|
#define __LINUX_DS2404_H
|
|
|
|
struct ds2404_platform_data {
|
|
|
|
unsigned int gpio_rst;
|
|
unsigned int gpio_clk;
|
|
unsigned int gpio_dq;
|
|
};
|
|
#endif
|