diff options
author | Ben Dooks <ben-linux@fluff.org> | 2006-09-20 15:54:54 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-25 05:33:57 -0400 |
commit | 7f61a84076ce4a6fe83a381751e33972f2a91ddc (patch) | |
tree | 8336051e71bf57ef9fd44177b799281f5f33613c /arch/arm/mach-s3c2410 | |
parent | 72d70d06d8e431f40fc2d41710615735c0a84aed (diff) |
[ARM] 3843/1: S3C24XX: Remove modfication lines from comments
Remove the redundant Modification lines from
the top of the files in arch/arm/mach-s3c2410
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2410')
-rw-r--r-- | arch/arm/mach-s3c2410/bast-irq.c | 4 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/devs.h | 5 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/gpio.c | 16 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/mach-anubis.c | 6 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/mach-smdk2440.c | 9 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/s3c2410.c | 11 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/s3c2412.c | 11 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/s3c2440-dsc.c | 5 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/usb-simtec.c | 6 |
9 files changed, 1 insertions, 72 deletions
diff --git a/arch/arm/mach-s3c2410/bast-irq.c b/arch/arm/mach-s3c2410/bast-irq.c index def4441d2442..440e9aa0211a 100644 --- a/arch/arm/mach-s3c2410/bast-irq.c +++ b/arch/arm/mach-s3c2410/bast-irq.c | |||
@@ -18,10 +18,6 @@ | |||
18 | * You should have received a copy of the GNU General Public License | 18 | * You should have received a copy of the GNU General Public License |
19 | * along with this program; if not, write to the Free Software | 19 | * along with this program; if not, write to the Free Software |
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
21 | * | ||
22 | * Modifications: | ||
23 | * 08-Jan-2003 BJD Moved from central IRQ code | ||
24 | * 21-Aug-2005 BJD Fixed missing code and compile errors | ||
25 | */ | 21 | */ |
26 | 22 | ||
27 | 23 | ||
diff --git a/arch/arm/mach-s3c2410/devs.h b/arch/arm/mach-s3c2410/devs.h index 726e2eaf8797..14fb0bade716 100644 --- a/arch/arm/mach-s3c2410/devs.h +++ b/arch/arm/mach-s3c2410/devs.h | |||
@@ -8,11 +8,6 @@ | |||
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | * | ||
12 | * Modifications: | ||
13 | * 18-Aug-2004 BJD Created initial version | ||
14 | * 27-Aug-2004 BJD Added timers 0 through 3 | ||
15 | * 10-Feb-2005 BJD Added camera from guillaume.gourat@nexvision.tv | ||
16 | */ | 11 | */ |
17 | #include <linux/platform_device.h> | 12 | #include <linux/platform_device.h> |
18 | 13 | ||
diff --git a/arch/arm/mach-s3c2410/gpio.c b/arch/arm/mach-s3c2410/gpio.c index cd39e8684584..db6393c99860 100644 --- a/arch/arm/mach-s3c2410/gpio.c +++ b/arch/arm/mach-s3c2410/gpio.c | |||
@@ -18,21 +18,7 @@ | |||
18 | * You should have received a copy of the GNU General Public License | 18 | * You should have received a copy of the GNU General Public License |
19 | * along with this program; if not, write to the Free Software | 19 | * along with this program; if not, write to the Free Software |
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
21 | * | 21 | */ |
22 | * Changelog | ||
23 | * 13-Sep-2004 BJD Implemented change of MISCCR | ||
24 | * 14-Sep-2004 BJD Added getpin call | ||
25 | * 14-Sep-2004 BJD Fixed bug in setpin() call | ||
26 | * 30-Sep-2004 BJD Fixed cfgpin() mask bug | ||
27 | * 01-Oct-2004 BJD Added getcfg() to get pin configuration | ||
28 | * 01-Oct-2004 BJD Fixed mask bug in pullup() call | ||
29 | * 01-Oct-2004 BJD Added getirq() to turn pin into irqno | ||
30 | * 04-Oct-2004 BJD Added irq filter controls for GPIO | ||
31 | * 05-Nov-2004 BJD EXPORT_SYMBOL() added for all code | ||
32 | * 13-Mar-2005 BJD Updates for __iomem | ||
33 | * 26-Oct-2005 BJD Added generic configuration types | ||
34 | * 15-Jan-2006 LCVR Added support for the S3C2400 | ||
35 | */ | ||
36 | 22 | ||
37 | 23 | ||
38 | #include <linux/kernel.h> | 24 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/mach-anubis.c b/arch/arm/mach-s3c2410/mach-anubis.c index 60641d452db3..e94cdcd96591 100644 --- a/arch/arm/mach-s3c2410/mach-anubis.c +++ b/arch/arm/mach-s3c2410/mach-anubis.c | |||
@@ -4,15 +4,9 @@ | |||
4 | * http://armlinux.simtec.co.uk/ | 4 | * http://armlinux.simtec.co.uk/ |
5 | * Ben Dooks <ben@simtec.co.uk> | 5 | * Ben Dooks <ben@simtec.co.uk> |
6 | * | 6 | * |
7 | * | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | 7 | * This program is free software; you can redistribute it and/or modify |
10 | * it under the terms of the GNU General Public License version 2 as | 8 | * it under the terms of the GNU General Public License version 2 as |
11 | * published by the Free Software Foundation. | 9 | * published by the Free Software Foundation. |
12 | * | ||
13 | * Modifications: | ||
14 | * 02-May-2005 BJD Copied from mach-bast.c | ||
15 | * 20-Sep-2005 BJD Added static to non-exported items | ||
16 | */ | 10 | */ |
17 | 11 | ||
18 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/mach-smdk2440.c b/arch/arm/mach-s3c2410/mach-smdk2440.c index d661c6b7ff56..e2205ff1b0ee 100644 --- a/arch/arm/mach-s3c2410/mach-smdk2440.c +++ b/arch/arm/mach-s3c2410/mach-smdk2440.c | |||
@@ -11,15 +11,6 @@ | |||
11 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
13 | * | 13 | * |
14 | * Modifications: | ||
15 | * 01-Nov-2004 BJD Initial version | ||
16 | * 12-Nov-2004 BJD Updated for release | ||
17 | * 04-Jan-2005 BJD Fixes for pre-release | ||
18 | * 22-Feb-2005 BJD Updated for 2.6.11-rc5 relesa | ||
19 | * 10-Mar-2005 LCVR Replaced S3C2410_VA by S3C24XX_VA | ||
20 | * 14-Mar-2005 BJD void __iomem fixes | ||
21 | * 20-Sep-2005 BJD Added static to non-exported items | ||
22 | * 26-Oct-2005 BJD Added framebuffer data | ||
23 | */ | 14 | */ |
24 | 15 | ||
25 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/s3c2410.c b/arch/arm/mach-s3c2410/s3c2410.c index a110cff9cf6b..183e4033ce61 100644 --- a/arch/arm/mach-s3c2410/s3c2410.c +++ b/arch/arm/mach-s3c2410/s3c2410.c | |||
@@ -8,17 +8,6 @@ | |||
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | * | ||
12 | * Modifications: | ||
13 | * 16-May-2003 BJD Created initial version | ||
14 | * 16-Aug-2003 BJD Fixed header files and copyright, added URL | ||
15 | * 05-Sep-2003 BJD Moved to kernel v2.6 | ||
16 | * 18-Jan-2004 BJD Added serial port configuration | ||
17 | * 21-Aug-2004 BJD Added new struct s3c2410_board handler | ||
18 | * 28-Sep-2004 BJD Updates for new serial port bits | ||
19 | * 04-Nov-2004 BJD Updated UART configuration process | ||
20 | * 10-Jan-2005 BJD Removed s3c2410_clock_tick_rate | ||
21 | * 13-Aug-2005 DA Removed UART from initial I/O mappings | ||
22 | */ | 11 | */ |
23 | 12 | ||
24 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/s3c2412.c b/arch/arm/mach-s3c2410/s3c2412.c index c38db0715bd3..ea25078cf4f8 100644 --- a/arch/arm/mach-s3c2410/s3c2412.c +++ b/arch/arm/mach-s3c2410/s3c2412.c | |||
@@ -8,17 +8,6 @@ | |||
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | * | ||
12 | * Modifications: | ||
13 | * 16-May-2003 BJD Created initial version | ||
14 | * 16-Aug-2003 BJD Fixed header files and copyright, added URL | ||
15 | * 05-Sep-2003 BJD Moved to kernel v2.6 | ||
16 | * 18-Jan-2004 BJD Added serial port configuration | ||
17 | * 21-Aug-2004 BJD Added new struct s3c2410_board handler | ||
18 | * 28-Sep-2004 BJD Updates for new serial port bits | ||
19 | * 04-Nov-2004 BJD Updated UART configuration process | ||
20 | * 10-Jan-2005 BJD Removed s3c2410_clock_tick_rate | ||
21 | * 13-Aug-2005 DA Removed UART from initial I/O mappings | ||
22 | */ | 11 | */ |
23 | 12 | ||
24 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/s3c2440-dsc.c b/arch/arm/mach-s3c2410/s3c2440-dsc.c index 16fa2a3b38fa..c92ea66ba45e 100644 --- a/arch/arm/mach-s3c2410/s3c2440-dsc.c +++ b/arch/arm/mach-s3c2410/s3c2440-dsc.c | |||
@@ -8,11 +8,6 @@ | |||
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
10 | * published by the Free Software Foundation. | 10 | * published by the Free Software Foundation. |
11 | * | ||
12 | * Modifications: | ||
13 | * 29-Aug-2004 BJD Start of drive-strength control | ||
14 | * 09-Nov-2004 BJD Added symbol export | ||
15 | * 11-Jan-2005 BJD Include fix | ||
16 | */ | 11 | */ |
17 | 12 | ||
18 | #include <linux/kernel.h> | 13 | #include <linux/kernel.h> |
diff --git a/arch/arm/mach-s3c2410/usb-simtec.c b/arch/arm/mach-s3c2410/usb-simtec.c index 6b22d8f0a00d..c635efa7cd31 100644 --- a/arch/arm/mach-s3c2410/usb-simtec.c +++ b/arch/arm/mach-s3c2410/usb-simtec.c | |||
@@ -10,12 +10,6 @@ | |||
10 | * This program is free software; you can redistribute it and/or modify | 10 | * This program is free software; you can redistribute it and/or modify |
11 | * it under the terms of the GNU General Public License version 2 as | 11 | * it under the terms of the GNU General Public License version 2 as |
12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
13 | * | ||
14 | * Modifications: | ||
15 | * 14-Sep-2004 BJD Created | ||
16 | * 18-Oct-2004 BJD Cleanups, and added code to report OC cleared | ||
17 | * 09-Aug-2005 BJD Renamed s3c2410_report_oc to s3c2410_usb_report_oc | ||
18 | * 09-Aug-2005 BJD Ports powered only if both are enabled | ||
19 | */ | 13 | */ |
20 | 14 | ||
21 | #define DEBUG | 15 | #define DEBUG |