Server IP : 15.235.198.142 / Your IP : 216.73.216.85 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/src/linux-headers-6.8.0-45/include/linux/rtc/ |
Upload File : |
/* * ds1307.h - platform_data for the ds1307 (and variants) rtc driver * (C) Copyright 2012 by Wolfram Sang, Pengutronix e.K. * same license as the driver */ #ifndef _LINUX_DS1307_H #define _LINUX_DS1307_H #include <linux/types.h> #define DS1307_TRICKLE_CHARGER_250_OHM 0x01 #define DS1307_TRICKLE_CHARGER_2K_OHM 0x02 #define DS1307_TRICKLE_CHARGER_4K_OHM 0x03 #define DS1307_TRICKLE_CHARGER_NO_DIODE 0x04 #define DS1307_TRICKLE_CHARGER_DIODE 0x08 struct ds1307_platform_data { u8 trickle_charger_setup; }; #endif /* _LINUX_DS1307_H */