summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr
diff options
context:
space:
mode:
authorDaniel Hellstrom <daniel@gaisler.com>2015-02-27 16:42:36 +0100
committerDaniel Hellstrom <daniel@gaisler.com>2015-04-17 01:10:26 +0200
commit65d1f35b2738822eac20c4a97add003e98d21e9c (patch)
tree677ebd21df23776deb31c65d2d2a31d7c0001a2c /cpukit/libdrvmgr
parentLEON: move driver headers to bsp/ directory (diff)
downloadrtems-65d1f35b2738822eac20c4a97add003e98d21e9c.tar.bz2
DRVMGR: updated copyright into one line only
Diffstat (limited to 'cpukit/libdrvmgr')
-rw-r--r--cpukit/libdrvmgr/drvmgr.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr.h3
-rw-r--r--cpukit/libdrvmgr/drvmgr_by_id.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_by_name.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_confdefs.h3
-rw-r--r--cpukit/libdrvmgr/drvmgr_dev_by_name.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_drvinf.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_for_each_dev.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_for_each_list_dev.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_func.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_func_call.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_init.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_internal.h3
-rw-r--r--cpukit/libdrvmgr/drvmgr_list.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_list.h3
-rw-r--r--cpukit/libdrvmgr/drvmgr_lock.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_print.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_res.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_rw.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_translate.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_translate_check.c3
-rw-r--r--cpukit/libdrvmgr/drvmgr_unregister.c3
22 files changed, 22 insertions, 44 deletions
diff --git a/cpukit/libdrvmgr/drvmgr.c b/cpukit/libdrvmgr/drvmgr.c
index 0471865178..ab3d54e04f 100644
--- a/cpukit/libdrvmgr/drvmgr.c
+++ b/cpukit/libdrvmgr/drvmgr.c
@@ -1,7 +1,6 @@
/* Driver Manager Interface Implementation.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr.h b/cpukit/libdrvmgr/drvmgr.h
index f091728e49..b6eaeb0978 100644
--- a/cpukit/libdrvmgr/drvmgr.h
+++ b/cpukit/libdrvmgr/drvmgr.h
@@ -1,7 +1,6 @@
/* Driver Manager Interface.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_by_id.c b/cpukit/libdrvmgr/drvmgr_by_id.c
index 7a0ea42f3e..f3514c78f3 100644
--- a/cpukit/libdrvmgr/drvmgr_by_id.c
+++ b/cpukit/libdrvmgr/drvmgr_by_id.c
@@ -1,7 +1,6 @@
/* Find driver by driver-ID
*
- * 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/libdrvmgr/drvmgr_by_name.c b/cpukit/libdrvmgr/drvmgr_by_name.c
index 2ae527aef1..23c9d623ee 100644
--- a/cpukit/libdrvmgr/drvmgr_by_name.c
+++ b/cpukit/libdrvmgr/drvmgr_by_name.c
@@ -1,7 +1,6 @@
/* Find driver by driver-name
*
- * 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/libdrvmgr/drvmgr_confdefs.h b/cpukit/libdrvmgr/drvmgr_confdefs.h
index 1c3d9e862f..40af2ebb84 100644
--- a/cpukit/libdrvmgr/drvmgr_confdefs.h
+++ b/cpukit/libdrvmgr/drvmgr_confdefs.h
@@ -1,7 +1,6 @@
/* Driver Manager Configuration file.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_dev_by_name.c b/cpukit/libdrvmgr/drvmgr_dev_by_name.c
index f5a99ee696..0c24bd6494 100644
--- a/cpukit/libdrvmgr/drvmgr_dev_by_name.c
+++ b/cpukit/libdrvmgr/drvmgr_dev_by_name.c
@@ -1,7 +1,6 @@
/* Find device by device name
*
- * 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/libdrvmgr/drvmgr_drvinf.c b/cpukit/libdrvmgr/drvmgr_drvinf.c
index 9f7c7a5713..2eccf02d31 100644
--- a/cpukit/libdrvmgr/drvmgr_drvinf.c
+++ b/cpukit/libdrvmgr/drvmgr_drvinf.c
@@ -1,7 +1,6 @@
/* Driver Manager Driver Interface Implementation.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_for_each_dev.c b/cpukit/libdrvmgr/drvmgr_for_each_dev.c
index a3e63ecef9..9d39ce1f08 100644
--- a/cpukit/libdrvmgr/drvmgr_for_each_dev.c
+++ b/cpukit/libdrvmgr/drvmgr_for_each_dev.c
@@ -1,7 +1,6 @@
/* Iterate over device tree topology, breadth or depth-first
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_for_each_list_dev.c b/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
index 9e1b95b8ff..f3e5bee19d 100644
--- a/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
+++ b/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
@@ -1,7 +1,6 @@
/* Iterate over one list of devices used internally by driver manager
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_func.c b/cpukit/libdrvmgr/drvmgr_func.c
index e02a4446cb..ae21cd3dbe 100644
--- a/cpukit/libdrvmgr/drvmgr_func.c
+++ b/cpukit/libdrvmgr/drvmgr_func.c
@@ -1,7 +1,6 @@
/* Driver Manager optional dynamic function interface
*
- * 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/libdrvmgr/drvmgr_func_call.c b/cpukit/libdrvmgr/drvmgr_func_call.c
index 75836c31a0..ec9aa98455 100644
--- a/cpukit/libdrvmgr/drvmgr_func_call.c
+++ b/cpukit/libdrvmgr/drvmgr_func_call.c
@@ -1,7 +1,6 @@
/* Driver Manager optional dynamic function interface
*
- * 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/libdrvmgr/drvmgr_init.c b/cpukit/libdrvmgr/drvmgr_init.c
index b8a738fee2..7960f400f3 100644
--- a/cpukit/libdrvmgr/drvmgr_init.c
+++ b/cpukit/libdrvmgr/drvmgr_init.c
@@ -1,7 +1,6 @@
/* Driver Manager Initialization
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_internal.h b/cpukit/libdrvmgr/drvmgr_internal.h
index b4594555d5..f0a01c4f01 100644
--- a/cpukit/libdrvmgr/drvmgr_internal.h
+++ b/cpukit/libdrvmgr/drvmgr_internal.h
@@ -1,7 +1,6 @@
/* Private driver manager declarations
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_list.c b/cpukit/libdrvmgr/drvmgr_list.c
index dc1665f645..307900ce94 100644
--- a/cpukit/libdrvmgr/drvmgr_list.c
+++ b/cpukit/libdrvmgr/drvmgr_list.c
@@ -1,7 +1,6 @@
/* Driver Manager List Interface Implementation.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_list.h b/cpukit/libdrvmgr/drvmgr_list.h
index 6f4b98e29b..d23bf47ce9 100644
--- a/cpukit/libdrvmgr/drvmgr_list.h
+++ b/cpukit/libdrvmgr/drvmgr_list.h
@@ -1,7 +1,6 @@
/* Linked list help functions used by driver manager.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_lock.c b/cpukit/libdrvmgr/drvmgr_lock.c
index d6601d35c9..8061c5cb28 100644
--- a/cpukit/libdrvmgr/drvmgr_lock.c
+++ b/cpukit/libdrvmgr/drvmgr_lock.c
@@ -1,7 +1,6 @@
/* Driver Manager Internal locking implementation
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_print.c b/cpukit/libdrvmgr/drvmgr_print.c
index c36abfe527..7a1a4405eb 100644
--- a/cpukit/libdrvmgr/drvmgr_print.c
+++ b/cpukit/libdrvmgr/drvmgr_print.c
@@ -1,7 +1,6 @@
/* Driver Manager Information printing Interface Implementation
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_res.c b/cpukit/libdrvmgr/drvmgr_res.c
index 5f8598b7d8..cc9a9a08aa 100644
--- a/cpukit/libdrvmgr/drvmgr_res.c
+++ b/cpukit/libdrvmgr/drvmgr_res.c
@@ -1,7 +1,6 @@
/* Driver Manager Driver Resource Interface Implementation.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_rw.c b/cpukit/libdrvmgr/drvmgr_rw.c
index 6530cddc6d..7d02d9ea90 100644
--- a/cpukit/libdrvmgr/drvmgr_rw.c
+++ b/cpukit/libdrvmgr/drvmgr_rw.c
@@ -1,7 +1,6 @@
/* Driver Manager Read/Write Interface Implementation.
*
- * COPYRIGHT (c) 2009.
- * Cobham Gaisler AB.
+ * COPYRIGHT (c) 2009 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/libdrvmgr/drvmgr_translate.c b/cpukit/libdrvmgr/drvmgr_translate.c
index 7febf77d60..6354ed954d 100644
--- a/cpukit/libdrvmgr/drvmgr_translate.c
+++ b/cpukit/libdrvmgr/drvmgr_translate.c
@@ -1,7 +1,6 @@
/* Driver Manager Driver Translate Interface Implementation
*
- * 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/libdrvmgr/drvmgr_translate_check.c b/cpukit/libdrvmgr/drvmgr_translate_check.c
index c882b88f27..0205abdcc9 100644
--- a/cpukit/libdrvmgr/drvmgr_translate_check.c
+++ b/cpukit/libdrvmgr/drvmgr_translate_check.c
@@ -1,7 +1,6 @@
/* Driver Manager Driver Translate Interface Implementation
*
- * 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/libdrvmgr/drvmgr_unregister.c b/cpukit/libdrvmgr/drvmgr_unregister.c
index ef5260a13c..74d412da05 100644
--- a/cpukit/libdrvmgr/drvmgr_unregister.c
+++ b/cpukit/libdrvmgr/drvmgr_unregister.c
@@ -1,7 +1,6 @@
/* Driver Manager Device Unregister (removal) implementation
*
- * 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