Changeset 3585

Show
Ignore:
Timestamp:
10/14/01 17:04:46 (12 years ago)
Author:
mds
Message:

move MODULE_LICENSE to bottom of file to match where they put it

in kernel 2.4.11 to make patching better

Location:
i2c/trunk/kernel
Files:
9 modified

Legend:

Unmodified
Added
Removed
  • i2c/trunk/kernel/i2c-algo-bit.c

    r3584 r3585  
    3636#include "i2c.h" 
    3737#include "i2c-algo-bit.h" 
    38  
    39 #ifdef MODULE_LICENSE 
    40 MODULE_LICENSE("GPL"); 
    41 #endif 
    4238 
    4339/* ----- global defines ----------------------------------------------- */ 
     
    625621MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 
    626622MODULE_DESCRIPTION("I2C-Bus bit-banging algorithm"); 
     623#ifdef MODULE_LICENSE 
     624MODULE_LICENSE("GPL"); 
     625#endif 
    627626 
    628627MODULE_PARM(bit_test, "i"); 
  • i2c/trunk/kernel/i2c-algo-pcf.c

    r3584 r3585  
    4242#include "i2c-pcf8584.h" 
    4343 
    44 #ifdef MODULE_LICENSE 
    45 MODULE_LICENSE("GPL"); 
    46 #endif 
    47  
    4844/* ----- global defines ----------------------------------------------- */ 
    4945#define DEB(x) if (i2c_debug>=1) x 
     
    539535MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>"); 
    540536MODULE_DESCRIPTION("I2C-Bus PCF8584 algorithm"); 
     537#ifdef MODULE_LICENSE 
     538MODULE_LICENSE("GPL"); 
     539#endif 
    541540 
    542541MODULE_PARM(pcf_scan, "i"); 
  • i2c/trunk/kernel/i2c-core.c

    r3584 r3585  
    3030#include <linux/config.h> 
    3131#include "i2c.h" 
    32  
    33 #ifdef MODULE_LICENSE 
    34 MODULE_LICENSE("GPL"); 
    35 #endif 
    3632 
    3733/* ----- compatibility stuff ----------------------------------------------- */ 
     
    14141410MODULE_PARM(i2c_debug, "i"); 
    14151411MODULE_PARM_DESC(i2c_debug,"debug level"); 
     1412#ifdef MODULE_LICENSE 
     1413MODULE_LICENSE("GPL"); 
     1414#endif 
    14161415 
    14171416int init_module(void)  
  • i2c/trunk/kernel/i2c-dev.c

    r3584 r3585  
    5252#include "i2c.h" 
    5353#include "i2c-dev.h" 
    54  
    55 #ifdef MODULE_LICENSE 
    56 MODULE_LICENSE("GPL"); 
    57 #endif 
    5854 
    5955#ifdef MODULE 
     
    552548MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 
    553549MODULE_DESCRIPTION("I2C /dev entries driver"); 
     550#ifdef MODULE_LICENSE 
     551MODULE_LICENSE("GPL"); 
     552#endif 
    554553 
    555554int init_module(void) 
  • i2c/trunk/kernel/i2c-elektor.c

    r3584 r3585  
    4040#include "i2c-elektor.h" 
    4141#include "i2c-pcf8584.h" 
    42  
    43 #ifdef MODULE_LICENSE 
    44 MODULE_LICENSE("GPL"); 
    45 #endif 
    4642 
    4743#define DEFAULT_BASE 0x330 
     
    304300MODULE_AUTHOR("Hans Berglund <hb@spacetec.no>"); 
    305301MODULE_DESCRIPTION("I2C-Bus adapter routines for PCF8584 ISA bus adapter"); 
     302#ifdef MODULE_LICENSE 
     303MODULE_LICENSE("GPL"); 
     304#endif 
    306305 
    307306MODULE_PARM(base, "i"); 
  • i2c/trunk/kernel/i2c-elv.c

    r3584 r3585  
    3636#include "i2c.h" 
    3737#include "i2c-algo-bit.h" 
    38  
    39 #ifdef MODULE_LICENSE 
    40 MODULE_LICENSE("GPL"); 
    41 #endif 
    4238 
    4339#define DEFAULT_BASE 0x378 
     
    202198#ifdef MODULE 
    203199MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 
    204 MODULE_DESCRIPTION("I2C-Bus adapter routines for ELV parallel port adapter") 
    205 ; 
     200MODULE_DESCRIPTION("I2C-Bus adapter routines for ELV parallel port adapter"); 
     201#ifdef MODULE_LICENSE 
     202MODULE_LICENSE("GPL"); 
     203#endif 
     204 
    206205 
    207206MODULE_PARM(base, "i"); 
  • i2c/trunk/kernel/i2c-philips-par.c

    r3584 r3585  
    3232#include "i2c.h" 
    3333#include "i2c-algo-bit.h" 
    34  
    35 #ifdef MODULE_LICENSE 
    36 MODULE_LICENSE("GPL"); 
    37 #endif 
    3834 
    3935#ifndef __exit 
     
    295291MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 
    296292MODULE_DESCRIPTION("I2C-Bus adapter routines for Philips parallel port adapter"); 
     293#ifdef MODULE_LICENSE 
     294MODULE_LICENSE("GPL"); 
     295#endif 
    297296 
    298297MODULE_PARM(type, "i"); 
  • i2c/trunk/kernel/i2c-proc.c

    r3584 r3585  
    3636#include "i2c-proc.h" 
    3737#include <linux/init.h> 
    38  
    39 #ifdef MODULE_LICENSE 
    40 MODULE_LICENSE("GPL"); 
    41 #endif 
    4238 
    4339#ifndef THIS_MODULE 
     
    882878MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>"); 
    883879MODULE_DESCRIPTION("i2c-proc driver"); 
     880#ifdef MODULE_LICENSE 
     881MODULE_LICENSE("GPL"); 
     882#endif 
    884883 
    885884int i2c_cleanup(void) 
  • i2c/trunk/kernel/i2c-velleman.c

    r3584 r3585  
    3030#include "i2c.h" 
    3131#include "i2c-algo-bit.h" 
    32  
    33 #ifdef MODULE_LICENSE 
    34 MODULE_LICENSE("GPL"); 
    35 #endif 
    3632 
    3733/* ----- global defines ----------------------------------------------- */ 
     
    193189MODULE_AUTHOR("Simon G. Vogl <simon@tk.uni-linz.ac.at>"); 
    194190MODULE_DESCRIPTION("I2C-Bus adapter routines for Velleman K8000 adapter"); 
     191#ifdef MODULE_LICENSE 
     192MODULE_LICENSE("GPL"); 
     193#endif 
    195194 
    196195MODULE_PARM(base, "i");