rtc-ds13307.c 559 B

123456789101112131415161718192021222324
  1. /*
  2. * rtc-ds13307.c - RTC driver for the DS1307 and DS13307 I2C chips.
  3. *
  4. * Copyright (C) 2018 Helmut Pozimski
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/module.h>
  11. #define RTCDS13307 "rtc-ds13307" /* Module name */
  12. static int __init ds13307_init(void) {
  13. return 0;
  14. }
  15. static void __exit ds13307_exit(void) {
  16. }
  17. module_init(ds13307_init);
  18. module_exit(ds13307_exit);
  19. MODULE_LICENSE("GPL");