Changeset 3585
- Timestamp:
- 10/14/01 17:04:46 (12 years ago)
- Location:
- i2c/trunk/kernel
- Files:
-
- 9 modified
-
i2c-algo-bit.c (modified) (2 diffs)
-
i2c-algo-pcf.c (modified) (2 diffs)
-
i2c-core.c (modified) (2 diffs)
-
i2c-dev.c (modified) (2 diffs)
-
i2c-elektor.c (modified) (2 diffs)
-
i2c-elv.c (modified) (2 diffs)
-
i2c-philips-par.c (modified) (2 diffs)
-
i2c-proc.c (modified) (2 diffs)
-
i2c-velleman.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
i2c/trunk/kernel/i2c-algo-bit.c
r3584 r3585 36 36 #include "i2c.h" 37 37 #include "i2c-algo-bit.h" 38 39 #ifdef MODULE_LICENSE40 MODULE_LICENSE("GPL");41 #endif42 38 43 39 /* ----- global defines ----------------------------------------------- */ … … 625 621 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 626 622 MODULE_DESCRIPTION("I2C-Bus bit-banging algorithm"); 623 #ifdef MODULE_LICENSE 624 MODULE_LICENSE("GPL"); 625 #endif 627 626 628 627 MODULE_PARM(bit_test, "i"); -
i2c/trunk/kernel/i2c-algo-pcf.c
r3584 r3585 42 42 #include "i2c-pcf8584.h" 43 43 44 #ifdef MODULE_LICENSE45 MODULE_LICENSE("GPL");46 #endif47 48 44 /* ----- global defines ----------------------------------------------- */ 49 45 #define DEB(x) if (i2c_debug>=1) x … … 539 535 MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>"); 540 536 MODULE_DESCRIPTION("I2C-Bus PCF8584 algorithm"); 537 #ifdef MODULE_LICENSE 538 MODULE_LICENSE("GPL"); 539 #endif 541 540 542 541 MODULE_PARM(pcf_scan, "i"); -
i2c/trunk/kernel/i2c-core.c
r3584 r3585 30 30 #include <linux/config.h> 31 31 #include "i2c.h" 32 33 #ifdef MODULE_LICENSE34 MODULE_LICENSE("GPL");35 #endif36 32 37 33 /* ----- compatibility stuff ----------------------------------------------- */ … … 1414 1410 MODULE_PARM(i2c_debug, "i"); 1415 1411 MODULE_PARM_DESC(i2c_debug,"debug level"); 1412 #ifdef MODULE_LICENSE 1413 MODULE_LICENSE("GPL"); 1414 #endif 1416 1415 1417 1416 int init_module(void) -
i2c/trunk/kernel/i2c-dev.c
r3584 r3585 52 52 #include "i2c.h" 53 53 #include "i2c-dev.h" 54 55 #ifdef MODULE_LICENSE56 MODULE_LICENSE("GPL");57 #endif58 54 59 55 #ifdef MODULE … … 552 548 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 553 549 MODULE_DESCRIPTION("I2C /dev entries driver"); 550 #ifdef MODULE_LICENSE 551 MODULE_LICENSE("GPL"); 552 #endif 554 553 555 554 int init_module(void) -
i2c/trunk/kernel/i2c-elektor.c
r3584 r3585 40 40 #include "i2c-elektor.h" 41 41 #include "i2c-pcf8584.h" 42 43 #ifdef MODULE_LICENSE44 MODULE_LICENSE("GPL");45 #endif46 42 47 43 #define DEFAULT_BASE 0x330 … … 304 300 MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>"); 305 301 MODULE_DESCRIPTION("I2C-Bus adapter routines for PCF8584 ISA bus adapter"); 302 #ifdef MODULE_LICENSE 303 MODULE_LICENSE("GPL"); 304 #endif 306 305 307 306 MODULE_PARM(base, "i"); -
i2c/trunk/kernel/i2c-elv.c
r3584 r3585 36 36 #include "i2c.h" 37 37 #include "i2c-algo-bit.h" 38 39 #ifdef MODULE_LICENSE40 MODULE_LICENSE("GPL");41 #endif42 38 43 39 #define DEFAULT_BASE 0x378 … … 202 198 #ifdef MODULE 203 199 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 204 MODULE_DESCRIPTION("I2C-Bus adapter routines for ELV parallel port adapter") 205 ; 200 MODULE_DESCRIPTION("I2C-Bus adapter routines for ELV parallel port adapter"); 201 #ifdef MODULE_LICENSE 202 MODULE_LICENSE("GPL"); 203 #endif 204 206 205 207 206 MODULE_PARM(base, "i"); -
i2c/trunk/kernel/i2c-philips-par.c
r3584 r3585 32 32 #include "i2c.h" 33 33 #include "i2c-algo-bit.h" 34 35 #ifdef MODULE_LICENSE36 MODULE_LICENSE("GPL");37 #endif38 34 39 35 #ifndef __exit … … 295 291 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 296 292 MODULE_DESCRIPTION("I2C-Bus adapter routines for Philips parallel port adapter"); 293 #ifdef MODULE_LICENSE 294 MODULE_LICENSE("GPL"); 295 #endif 297 296 298 297 MODULE_PARM(type, "i"); -
i2c/trunk/kernel/i2c-proc.c
r3584 r3585 36 36 #include "i2c-proc.h" 37 37 #include <linux/init.h> 38 39 #ifdef MODULE_LICENSE40 MODULE_LICENSE("GPL");41 #endif42 38 43 39 #ifndef THIS_MODULE … … 882 878 MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>"); 883 879 MODULE_DESCRIPTION("i2c-proc driver"); 880 #ifdef MODULE_LICENSE 881 MODULE_LICENSE("GPL"); 882 #endif 884 883 885 884 int i2c_cleanup(void) -
i2c/trunk/kernel/i2c-velleman.c
r3584 r3585 30 30 #include "i2c.h" 31 31 #include "i2c-algo-bit.h" 32 33 #ifdef MODULE_LICENSE34 MODULE_LICENSE("GPL");35 #endif36 32 37 33 /* ----- global defines ----------------------------------------------- */ … … 193 189 MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 194 190 MODULE_DESCRIPTION("I2C-Bus adapter routines for Velleman K8000 adapter"); 191 #ifdef MODULE_LICENSE 192 MODULE_LICENSE("GPL"); 193 #endif 195 194 196 195 MODULE_PARM(base, "i");
