Changeset 1253
- Timestamp:
- 11/28/01 02:33:26 (7 years ago)
- Files:
-
- lm-sensors/trunk/CONTRIBUTORS (modified) (1 diff)
- lm-sensors/trunk/doc/chips/pcf8591 (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/pcf8591.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CONTRIBUTORS
r1243 r1253 65 65 * Hermann Jung <hej@odn.de> 66 66 Author of the fscpos driver. 67 * Aurelien Jarno <aurelien .jarno@laposte.net>67 * Aurelien Jarno <aurelien@aurel32.net> 68 68 Author of the pcf8591 driver. 69 lm-sensors/trunk/doc/chips/pcf8591
r1243 r1253 11 11 http://semiconductors.philips.com/ 12 12 13 Author: Aurelien Jarno <aurelien.jarno@laposte.net> 14 valueable contributions by Jan M. Sendler <sendler@sendler.de> 15 13 Author: Aurelien Jarno <aurelien@aurel32.net> 14 valuable contributions by Jan M. Sendler <sendler@sendler.de> 16 15 17 16 Module Parameters lm-sensors/trunk/kernel/chips/pcf8591.c
r1243 r1253 2 2 pcf8591.c - Part of lm_sensors, Linux kernel modules for hardware 3 3 monitoring 4 Copyright (c) 2001 Aurelien Jarno <aurelien .jarno@laposte.net>4 Copyright (c) 2001 Aurelien Jarno <aurelien@aurel32.net> 5 5 6 6 This program is free software; you can redistribute it and/or modify … … 21 21 #include <linux/version.h> 22 22 #include <linux/module.h> 23 #include <linux/ malloc.h>23 #include <linux/slab.h> 24 24 #include <linux/i2c.h> 25 25 #include "sensors.h" … … 528 528 #ifdef MODULE 529 529 530 MODULE_AUTHOR("Aurelien Jarno < Aurelien Jarno@laposte.net>");530 MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>"); 531 531 MODULE_DESCRIPTION("PCF8591 driver"); 532 532 #ifdef MODULE_LICENSE
