]> rtime.felk.cvut.cz Git - socketcan-devel.git/commitdiff
Unified the RCSID stuff which is usefull when making an external compilation.
authorhartkopp <hartkopp@030b6a49-0b11-0410-94ab-b0dab22257f2>
Thu, 19 Apr 2007 05:51:18 +0000 (05:51 +0000)
committerhartkopp <hartkopp@030b6a49-0b11-0410-94ab-b0dab22257f2>
Thu, 19 Apr 2007 05:51:18 +0000 (05:51 +0000)
The version.h include and the RCSID macro is automatically removed when
creating a (mainline) kernel patch by the script trunk/mkpatch .

git-svn-id: svn://svn.berlios.de//socketcan/trunk@219 030b6a49-0b11-0410-94ab-b0dab22257f2

12 files changed:
kernel/2.6/drivers/net/can/i82527/i82527.c
kernel/2.6/drivers/net/can/i82527/proc.c
kernel/2.6/drivers/net/can/mscan/mpc52xx_can.c
kernel/2.6/drivers/net/can/mscan/mscan.c
kernel/2.6/drivers/net/can/sja1000/proc.c
kernel/2.6/drivers/net/can/sja1000/sja1000.c
kernel/2.6/drivers/net/can/slcan.c
kernel/2.6/drivers/net/can/vcan.c
kernel/2.6/net/can/af_can.c
kernel/2.6/net/can/bcm.c
kernel/2.6/net/can/proc.c
kernel/2.6/net/can/raw.c

index eb4845ec34fea2ee2cf75b607a30f802126b3934..4ba7258c727cb91d57e9d140030be44e0b62946a 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * i82527.c -  Intel I82527 network device driver
  *
  * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
@@ -65,6 +63,9 @@
 #include "hal.h"
 #include "i82527.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
 MODULE_LICENSE("Dual BSD/GPL");
 MODULE_DESCRIPTION("LLCF/socketcan '" CHIP_NAME "' network device driver");
index f78422ecb0f9761a743d3111daef386ccccf0987..fecab9e7032e58c88284aa3399d86b325d9d39c2 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * proc.c -  proc file system functions for I82527 CAN driver.
  *
  * Copyright (c) 2002-2005 Volkswagen Group Electronic Research
@@ -55,6 +53,9 @@
 #include "i82527.h"
 #include "hal.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 extern struct net_device *can_dev[];
 
 static struct proc_dir_entry *pde       = NULL;
index 06b6718529d29e8bb034be8656ff0a8b7c8ab8c2..5022dfa8fdf3b29e5997189d9de37af7d9030957 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * DESCRIPTION:
  *  CAN bus driver for the Freescale MPC52xx embedded CPU.
  *
@@ -43,6 +41,9 @@
 
 #include "mscan.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 static int __devinit mpc52xx_can_probe(struct platform_device *pdev)
 {
        struct can_device *can;
index 85288414a02dc88285e32f6940a577bfc4b7aefe..0dd6d21b5879e3ec5600a18d466543e6ca959fe7 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * mscan.c
  *
  * DESCRIPTION:
@@ -45,6 +43,9 @@
 #include <linux/can/error.h>
 #include "mscan.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 #define MSCAN_NORMAL_MODE      0
 #define MSCAN_SLEEP_MODE        MSCAN_SLPRQ
 #define MSCAN_INIT_MODE                (MSCAN_INITRQ | MSCAN_SLPRQ)
index 66c07134fff61bcce38f3b9f83f279b6efb4a92d..43349e4529bd56b5867ef7a35520ab9e170c3fc4 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * proc.c -  proc file system functions for SJA1000 CAN driver.
  *
  * Copyright (c) 2002-2005 Volkswagen Group Electronic Research
@@ -55,6 +53,9 @@
 #include "sja1000.h"
 #include "hal.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 extern struct net_device *can_dev[];
 
 static struct proc_dir_entry *pde       = NULL;
index d4481055c3ce1369d4e1eb99a0c242d54c18ffd9..29091446c50cfa429b9c01aebea8fe42ecf9caa7 100644 (file)
@@ -1,6 +1,4 @@
 /*
- * $Id$
- *
  * sja1000.c -  Philips SJA1000 network device driver
  *
  * Copyright (c) 2003 Matthias Brukner, Trajet Gmbh, Rebenring 33,
@@ -68,6 +66,9 @@
 #include "sja1000.h"
 #include "hal.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
+RCSID("$Id$");
+
 MODULE_AUTHOR("Oliver Hartkopp <oliver.hartkopp@volkswagen.de>");
 MODULE_LICENSE("Dual BSD/GPL");
 MODULE_DESCRIPTION("LLCF/socketcan '" CHIP_NAME "' network device driver");
index 63b6e2d853dca44b074703f77e21804ce82a7779..473cd4da54608a4dcabdf3ab0b9d2d85c3a69eef 100644 (file)
@@ -77,8 +77,8 @@
 #include <linux/init.h>
 
 #include <linux/can.h>
-#include <linux/can/version.h>
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 static __initdata const char banner[] =
index 7ea3a46d4d5fa6def70c38e6b294e6f88917c97e..5021a0efb237561c7c74e9ca4bdea60b4cbf1029 100644 (file)
@@ -50,8 +50,8 @@
 #include <linux/if_ether.h>
 
 #include <linux/can.h>
-#include <linux/can/version.h>
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 static __initdata const char banner[] =
index 8de4c9f71e32bd40f8fc101c589898f1f3607913..e07f39beae8ddbac90c357de5dfd1baaa1a27cef 100644 (file)
 
 #include <linux/can.h>
 #include <linux/can/core.h>
-#include <linux/can/version.h>
-
 #include "af_can.h"
 
-
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 #define IDENT "af_can"
index 2ace2732b12b827db630fcd4c77a7bd95b373117..c9347a2354c1a0e4296286e854a5eea74bf7dbe3 100644 (file)
@@ -54,8 +54,8 @@
 #include <linux/can.h>
 #include <linux/can/core.h>
 #include <linux/can/bcm.h>
-#include <linux/can/version.h>
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 #ifdef CONFIG_CAN_DEBUG_CORE
index c05cf097ecbd169b0c6c577cf3a7ea4c5433dfce..5db47c7034e583944dff9c1ee06c6655a7c5c578 100644 (file)
 #include <linux/rcupdate.h>
 
 #include <linux/can/core.h>
-#include <linux/can/version.h>
-
 #include "af_can.h"
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 /* proc filenames */
index 43c861822f46f5e5c69ca8bd49d3be14c4b1a241..49e9722e5e9a2944f7e6364a33fc0987689b8e48 100644 (file)
@@ -56,8 +56,8 @@
 #include <linux/can/error.h>
 #include <linux/can/core.h>
 #include <linux/can/raw.h>
-#include <linux/can/version.h>
 
+#include <linux/can/version.h> /* for RCSID. Removed by mkpatch script */
 RCSID("$Id$");
 
 #define IDENT "raw"