diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2018-03-14 17:15:16 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2018-03-20 09:23:27 -0400 |
commit | 99bfce5db9c071800bdc7e9658a68e6d11aeecf6 (patch) | |
tree | 550e9d9c0843ee9fa40e1b24a5b8dccbed445318 | |
parent | 83ac4ca943affce56a2c408ddb2f5232f478fb11 (diff) |
genirq: Cleanup top of file comments
Remove pointless references to the file name itself and condense the
information so it wastes less space.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Cc: Kate Stewart <kstewart@linuxfoundation.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Philippe Ombredanne <pombredanne@nexb.com>
Link: https://lkml.kernel.org/r/20180314212030.412095827@linutronix.de
-rw-r--r-- | kernel/irq/autoprobe.c | 2 | ||||
-rw-r--r-- | kernel/irq/chip.c | 9 | ||||
-rw-r--r-- | kernel/irq/handle.c | 7 | ||||
-rw-r--r-- | kernel/irq/ipi.c | 2 | ||||
-rw-r--r-- | kernel/irq/irqdesc.c | 5 | ||||
-rw-r--r-- | kernel/irq/manage.c | 2 | ||||
-rw-r--r-- | kernel/irq/msi.c | 2 | ||||
-rw-r--r-- | kernel/irq/pm.c | 2 | ||||
-rw-r--r-- | kernel/irq/proc.c | 2 | ||||
-rw-r--r-- | kernel/irq/resend.c | 2 | ||||
-rw-r--r-- | kernel/irq/spurious.c | 2 | ||||
-rw-r--r-- | kernel/irq/timings.c | 2 |
12 files changed, 7 insertions, 32 deletions
diff --git a/kernel/irq/autoprobe.c b/kernel/irq/autoprobe.c index 8c82ea26e837..16cbf6beb276 100644 --- a/kernel/irq/autoprobe.c +++ b/kernel/irq/autoprobe.c | |||
@@ -1,7 +1,5 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | 2 | /* |
3 | * linux/kernel/irq/autoprobe.c | ||
4 | * | ||
5 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar | 3 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar |
6 | * | 4 | * |
7 | * This file contains the interrupt probing code and driver APIs. | 5 | * This file contains the interrupt probing code and driver APIs. |
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index c69357a43849..b575c7a93b76 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c | |||
@@ -1,13 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/chip.c | ||
3 | * | ||
4 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar | 2 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
5 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King | 3 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King |
6 | * | 4 | * |
7 | * This file contains the core interrupt handling code, for irq-chip | 5 | * This file contains the core interrupt handling code, for irq-chip based |
8 | * based architectures. | 6 | * architectures. Detailed information is available in |
9 | * | 7 | * Documentation/core-api/genericirq.rst |
10 | * Detailed information is available in Documentation/core-api/genericirq.rst | ||
11 | */ | 8 | */ |
12 | 9 | ||
13 | #include <linux/irq.h> | 10 | #include <linux/irq.h> |
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index 3570c715c3e7..1bf69b6571a3 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -1,12 +1,9 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/handle.c | ||
3 | * | ||
4 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar | 2 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
5 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King | 3 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King |
6 | * | 4 | * |
7 | * This file contains the core interrupt handling code. | 5 | * This file contains the core interrupt handling code. Detailed |
8 | * | 6 | * information is available in Documentation/core-api/genericirq.rst |
9 | * Detailed information is available in Documentation/core-api/genericirq.rst | ||
10 | * | 7 | * |
11 | */ | 8 | */ |
12 | 9 | ||
diff --git a/kernel/irq/ipi.c b/kernel/irq/ipi.c index 259a22aa9934..4da9cf0a935c 100644 --- a/kernel/irq/ipi.c +++ b/kernel/irq/ipi.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/ipi.c | ||
3 | * | ||
4 | * Copyright (C) 2015 Imagination Technologies Ltd | 2 | * Copyright (C) 2015 Imagination Technologies Ltd |
5 | * Author: Qais Yousef <qais.yousef@imgtec.com> | 3 | * Author: Qais Yousef <qais.yousef@imgtec.com> |
6 | * | 4 | * |
diff --git a/kernel/irq/irqdesc.c b/kernel/irq/irqdesc.c index d9ded088d336..55515cce1cc2 100644 --- a/kernel/irq/irqdesc.c +++ b/kernel/irq/irqdesc.c | |||
@@ -2,9 +2,8 @@ | |||
2 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar | 2 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
3 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King | 3 | * Copyright (C) 2005-2006, Thomas Gleixner, Russell King |
4 | * | 4 | * |
5 | * This file contains the interrupt descriptor management code | 5 | * This file contains the interrupt descriptor management code. Detailed |
6 | * | 6 | * information is available in Documentation/core-api/genericirq.rst |
7 | * Detailed information is available in Documentation/core-api/genericirq.rst | ||
8 | * | 7 | * |
9 | */ | 8 | */ |
10 | #include <linux/irq.h> | 9 | #include <linux/irq.h> |
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index b0aa23b2398e..99eb1977e784 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/manage.c | ||
3 | * | ||
4 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar | 2 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
5 | * Copyright (C) 2005-2006 Thomas Gleixner | 3 | * Copyright (C) 2005-2006 Thomas Gleixner |
6 | * | 4 | * |
diff --git a/kernel/irq/msi.c b/kernel/irq/msi.c index 2f3c4f5382cc..8429c88427ff 100644 --- a/kernel/irq/msi.c +++ b/kernel/irq/msi.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/msi.c | ||
3 | * | ||
4 | * Copyright (C) 2014 Intel Corp. | 2 | * Copyright (C) 2014 Intel Corp. |
5 | * Author: Jiang Liu <jiang.liu@linux.intel.com> | 3 | * Author: Jiang Liu <jiang.liu@linux.intel.com> |
6 | * | 4 | * |
diff --git a/kernel/irq/pm.c b/kernel/irq/pm.c index 6bd9b58429cc..474d3fa32a28 100644 --- a/kernel/irq/pm.c +++ b/kernel/irq/pm.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/pm.c | ||
3 | * | ||
4 | * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. | 2 | * Copyright (C) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc. |
5 | * | 3 | * |
6 | * This file contains power management functions related to interrupts. | 4 | * This file contains power management functions related to interrupts. |
diff --git a/kernel/irq/proc.c b/kernel/irq/proc.c index e8f374971e37..7cb091d81d91 100644 --- a/kernel/irq/proc.c +++ b/kernel/irq/proc.c | |||
@@ -1,7 +1,5 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | 2 | /* |
3 | * linux/kernel/irq/proc.c | ||
4 | * | ||
5 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar | 3 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar |
6 | * | 4 | * |
7 | * This file contains the /proc/irq/ handling code. | 5 | * This file contains the /proc/irq/ handling code. |
diff --git a/kernel/irq/resend.c b/kernel/irq/resend.c index 1d08f45135c2..95414ad3506a 100644 --- a/kernel/irq/resend.c +++ b/kernel/irq/resend.c | |||
@@ -1,7 +1,5 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | 2 | /* |
3 | * linux/kernel/irq/resend.c | ||
4 | * | ||
5 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar | 3 | * Copyright (C) 1992, 1998-2006 Linus Torvalds, Ingo Molnar |
6 | * Copyright (C) 2005-2006, Thomas Gleixner | 4 | * Copyright (C) 2005-2006, Thomas Gleixner |
7 | * | 5 | * |
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c index 6cdecc6f4c53..d867d6ddafdd 100644 --- a/kernel/irq/spurious.c +++ b/kernel/irq/spurious.c | |||
@@ -1,7 +1,5 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | 2 | /* |
3 | * linux/kernel/irq/spurious.c | ||
4 | * | ||
5 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar | 3 | * Copyright (C) 1992, 1998-2004 Linus Torvalds, Ingo Molnar |
6 | * | 4 | * |
7 | * This file contains spurious interrupt handling. | 5 | * This file contains spurious interrupt handling. |
diff --git a/kernel/irq/timings.c b/kernel/irq/timings.c index e0923fa4927a..c87099b2ea50 100644 --- a/kernel/irq/timings.c +++ b/kernel/irq/timings.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * linux/kernel/irq/timings.c | ||
3 | * | ||
4 | * Copyright (C) 2016, Linaro Ltd - Daniel Lezcano <daniel.lezcano@linaro.org> | 2 | * Copyright (C) 2016, Linaro Ltd - Daniel Lezcano <daniel.lezcano@linaro.org> |
5 | * | 3 | * |
6 | * This program is free software; you can redistribute it and/or modify | 4 | * This program is free software; you can redistribute it and/or modify |