/* * rtc-ds13307.c - RTC driver for the DS1307 and DS13307 I2C chips. * * Copyright (C) 2018 Helmut Pozimski * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include #define RTCDS13307 "rtc-ds13307" /* Module name */ static int __init ds13307_init(void) { return 0; } static void __exit ds13307_exit(void) { } module_init(ds13307_init); module_exit(ds13307_exit); MODULE_LICENSE("GPL");