From 71e8a5ccd996170ce8f1e21aee05292d01427108 Mon Sep 17 00:00:00 2001 From: Daniel Hellstrom Date: Fri, 27 Feb 2015 16:45:59 +0100 Subject: LIBPCI: moved copyright into a single line --- cpukit/libpci/pci/access.h | 3 +-- cpukit/libpci/pci/cfg.h | 3 +-- cpukit/libpci/pci/cfg_auto.h | 3 +-- cpukit/libpci/pci/cfg_peripheral.h | 3 +-- cpukit/libpci/pci/cfg_read.h | 3 +-- cpukit/libpci/pci/cfg_static.h | 3 +-- cpukit/libpci/pci/irq.h | 3 +-- cpukit/libpci/pci_access.c | 3 +-- cpukit/libpci/pci_access_func.c | 3 +-- cpukit/libpci/pci_access_io.c | 3 +-- cpukit/libpci/pci_access_mem.c | 3 +-- cpukit/libpci/pci_access_mem_be.c | 3 +-- cpukit/libpci/pci_access_mem_le.c | 3 +-- cpukit/libpci/pci_cfg.c | 3 +-- cpukit/libpci/pci_cfg_auto.c | 3 +-- cpukit/libpci/pci_cfg_peripheral.c | 3 +-- cpukit/libpci/pci_cfg_print_code.c | 3 +-- cpukit/libpci/pci_cfg_read.c | 3 +-- cpukit/libpci/pci_cfg_static.c | 3 +-- cpukit/libpci/pci_find.c | 3 +-- cpukit/libpci/pci_find_dev.c | 3 +-- cpukit/libpci/pci_for_each.c | 3 +-- cpukit/libpci/pci_for_each_child.c | 3 +-- cpukit/libpci/pci_for_each_dev.c | 3 +-- cpukit/libpci/pci_get_dev.c | 3 +-- cpukit/libpci/pci_irq.c | 3 +-- cpukit/libpci/pci_print.c | 3 +-- 27 files changed, 27 insertions(+), 54 deletions(-) (limited to 'cpukit/libpci') diff --git a/cpukit/libpci/pci/access.h b/cpukit/libpci/pci/access.h index f8365db604..990aaaefdf 100644 --- a/cpukit/libpci/pci/access.h +++ b/cpukit/libpci/pci/access.h @@ -1,8 +1,7 @@ /* Routines to access PCI memory/configuration space and other PCI related * functions the PCI Library provides. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/cfg.h b/cpukit/libpci/pci/cfg.h index 8869a512af..592f3649e3 100644 --- a/cpukit/libpci/pci/cfg.h +++ b/cpukit/libpci/pci/cfg.h @@ -3,8 +3,7 @@ * - static configuration (user defined config) * both versions are defined here. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/cfg_auto.h b/cpukit/libpci/pci/cfg_auto.h index 25e733640c..71626c7404 100644 --- a/cpukit/libpci/pci/cfg_auto.h +++ b/cpukit/libpci/pci/cfg_auto.h @@ -1,7 +1,6 @@ /* PCI Auto Configuration Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/cfg_peripheral.h b/cpukit/libpci/pci/cfg_peripheral.h index 68f2e24e2f..bbeaf6e408 100644 --- a/cpukit/libpci/pci/cfg_peripheral.h +++ b/cpukit/libpci/pci/cfg_peripheral.h @@ -1,7 +1,6 @@ /* PCI Peripheral Configuration Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/cfg_read.h b/cpukit/libpci/pci/cfg_read.h index af60a4e5e3..31a600a34b 100644 --- a/cpukit/libpci/pci/cfg_read.h +++ b/cpukit/libpci/pci/cfg_read.h @@ -1,8 +1,7 @@ /* PCI Read Configuration Library. Read current config that bootloader/BIOS * has setup. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/cfg_static.h b/cpukit/libpci/pci/cfg_static.h index 5633dfcdb5..ff003007dd 100644 --- a/cpukit/libpci/pci/cfg_static.h +++ b/cpukit/libpci/pci/cfg_static.h @@ -1,7 +1,6 @@ /* Static PCI Auto Configuration Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci/irq.h b/cpukit/libpci/pci/irq.h index 2dacadf4c4..3a7dfe4318 100644 --- a/cpukit/libpci/pci/irq.h +++ b/cpukit/libpci/pci/irq.h @@ -3,8 +3,7 @@ * IRQ handling does not have so much with PCI to do, this library depends * on the BSP to implement shared interrupts. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access.c b/cpukit/libpci/pci_access.c index 371c5ef24e..8fdf7ca7c7 100644 --- a/cpukit/libpci/pci_access.c +++ b/cpukit/libpci/pci_access.c @@ -1,7 +1,6 @@ /* PCI Access Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access_func.c b/cpukit/libpci/pci_access_func.c index d86ccab357..cf4f86b602 100644 --- a/cpukit/libpci/pci_access_func.c +++ b/cpukit/libpci/pci_access_func.c @@ -1,7 +1,6 @@ /* PCI Access Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access_io.c b/cpukit/libpci/pci_access_io.c index 12e6699c65..c92870ae93 100644 --- a/cpukit/libpci/pci_access_io.c +++ b/cpukit/libpci/pci_access_io.c @@ -1,7 +1,6 @@ /* PCI Access Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access_mem.c b/cpukit/libpci/pci_access_mem.c index 216f83fe90..edc74097b6 100644 --- a/cpukit/libpci/pci_access_mem.c +++ b/cpukit/libpci/pci_access_mem.c @@ -1,8 +1,7 @@ /* PCI Access Library * Registers-over-Memory Space - Generic Big/Little endian PCI bus definitions * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access_mem_be.c b/cpukit/libpci/pci_access_mem_be.c index f05b547e1c..a493f92fae 100644 --- a/cpukit/libpci/pci_access_mem_be.c +++ b/cpukit/libpci/pci_access_mem_be.c @@ -1,8 +1,7 @@ /* PCI Access Library * Registers-over-Memory Space - Generic Big endian PCI bus definitions * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_access_mem_le.c b/cpukit/libpci/pci_access_mem_le.c index 2746f24a4f..708f738728 100644 --- a/cpukit/libpci/pci_access_mem_le.c +++ b/cpukit/libpci/pci_access_mem_le.c @@ -1,8 +1,7 @@ /* PCI Access Library * Registers-over-Memory Space - Generic Little endian PCI bus definitions * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg.c b/cpukit/libpci/pci_cfg.c index 78a1229f29..e27d84536c 100644 --- a/cpukit/libpci/pci_cfg.c +++ b/cpukit/libpci/pci_cfg.c @@ -1,7 +1,6 @@ /* PCI Configuration Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg_auto.c b/cpukit/libpci/pci_cfg_auto.c index 548dd90185..3f9c75fee8 100644 --- a/cpukit/libpci/pci_cfg_auto.c +++ b/cpukit/libpci/pci_cfg_auto.c @@ -1,7 +1,6 @@ /* PCI (Auto) configuration Library. Setup PCI configuration space and IRQ. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg_peripheral.c b/cpukit/libpci/pci_cfg_peripheral.c index d1ba4c93a6..e6c69b68ba 100644 --- a/cpukit/libpci/pci_cfg_peripheral.c +++ b/cpukit/libpci/pci_cfg_peripheral.c @@ -1,7 +1,6 @@ /* PCI (Peripheral) Configuration Library * - * COPYRIGHT (c) 2011. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2011 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg_print_code.c b/cpukit/libpci/pci_cfg_print_code.c index 8770c8a717..edd017d421 100644 --- a/cpukit/libpci/pci_cfg_print_code.c +++ b/cpukit/libpci/pci_cfg_print_code.c @@ -1,8 +1,7 @@ /* PCI (Static) Configuration Library. PCI Configuration C code console * printout routines that can be used to build a static PCI configuration. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg_read.c b/cpukit/libpci/pci_cfg_read.c index 2db465db2c..b68eb47898 100644 --- a/cpukit/libpci/pci_cfg_read.c +++ b/cpukit/libpci/pci_cfg_read.c @@ -1,8 +1,7 @@ /* Read current PCI configuration that bootloader or BIOS has already setup * and initialize the PCI structures. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_cfg_static.c b/cpukit/libpci/pci_cfg_static.c index d7d43211d8..ad3182e91e 100644 --- a/cpukit/libpci/pci_cfg_static.c +++ b/cpukit/libpci/pci_cfg_static.c @@ -1,7 +1,6 @@ /* PCI (Static) Configuration Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_find.c b/cpukit/libpci/pci_find.c index 945cb56ea9..a2575b7fed 100644 --- a/cpukit/libpci/pci_find.c +++ b/cpukit/libpci/pci_find.c @@ -1,7 +1,6 @@ /* PCI Help function, Find a PCI device by VENDOR/DEVICE ID * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_find_dev.c b/cpukit/libpci/pci_find_dev.c index 184d05cb67..3339c42f44 100644 --- a/cpukit/libpci/pci_find_dev.c +++ b/cpukit/libpci/pci_find_dev.c @@ -1,7 +1,6 @@ /* PCI Help function, Find a PCI device by VENDOR/DEVICE ID * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_for_each.c b/cpukit/libpci/pci_for_each.c index dc0a9a16f1..88e4ac3935 100644 --- a/cpukit/libpci/pci_for_each.c +++ b/cpukit/libpci/pci_for_each.c @@ -1,7 +1,6 @@ /* PCI Help Function, iterate over all PCI devices. Find devices by cfg access. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_for_each_child.c b/cpukit/libpci/pci_for_each_child.c index 9d08b77051..a4fef97c04 100644 --- a/cpukit/libpci/pci_for_each_child.c +++ b/cpukit/libpci/pci_for_each_child.c @@ -1,7 +1,6 @@ /* PCI Help function, iterate all PCI device children of PCI bus. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_for_each_dev.c b/cpukit/libpci/pci_for_each_dev.c index c2b3934fdc..b090f1c3eb 100644 --- a/cpukit/libpci/pci_for_each_dev.c +++ b/cpukit/libpci/pci_for_each_dev.c @@ -1,7 +1,6 @@ /* PCI Help function, iterate all PCI devices. * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_get_dev.c b/cpukit/libpci/pci_get_dev.c index 5e07653e6c..c415a8073c 100644 --- a/cpukit/libpci/pci_get_dev.c +++ b/cpukit/libpci/pci_get_dev.c @@ -1,7 +1,6 @@ /* PCI Help function, Find a PCI device by BUS|SLOT|FUNCTION * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_irq.c b/cpukit/libpci/pci_irq.c index e379852c8b..2f4d332dc9 100644 --- a/cpukit/libpci/pci_irq.c +++ b/cpukit/libpci/pci_irq.c @@ -1,7 +1,6 @@ /* PCI IRQ Library * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at diff --git a/cpukit/libpci/pci_print.c b/cpukit/libpci/pci_print.c index 9c40f1e437..82baba91dc 100644 --- a/cpukit/libpci/pci_print.c +++ b/cpukit/libpci/pci_print.c @@ -1,7 +1,6 @@ /* PCI Print Current Configuration To Terminal * - * COPYRIGHT (c) 2010. - * Cobham Gaisler AB. + * COPYRIGHT (c) 2010 Cobham Gaisler AB. * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at -- cgit v1.2.3