summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr
diff options
context:
space:
mode:
authorDaniel Hellstrom <daniel@gaisler.com>2015-04-09 16:09:13 +0200
committerDaniel Hellstrom <daniel@gaisler.com>2015-04-17 01:10:28 +0200
commit0decc8066406ab935cc38f6265f2f25869dbfe98 (patch)
treef7b32e6d3454ff6948f7823d758c2e69db7d2cf0 /cpukit/libdrvmgr
parentDRVMGR: removed a goto and added comments (diff)
downloadrtems-0decc8066406ab935cc38f6265f2f25869dbfe98.tar.bz2
DRVMGR: updated license to rtems.org
Diffstat (limited to 'cpukit/libdrvmgr')
-rw-r--r--cpukit/libdrvmgr/drvmgr.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr.h2
-rw-r--r--cpukit/libdrvmgr/drvmgr_by_id.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_by_name.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_confdefs.h2
-rw-r--r--cpukit/libdrvmgr/drvmgr_dev_by_name.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_drvinf.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_for_each_dev.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_for_each_list_dev.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_func.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_func_call.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_init.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_internal.h2
-rw-r--r--cpukit/libdrvmgr/drvmgr_list.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_list.h2
-rw-r--r--cpukit/libdrvmgr/drvmgr_lock.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_print.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_res.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_rw.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_translate.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_translate_check.c2
-rw-r--r--cpukit/libdrvmgr/drvmgr_unregister.c2
22 files changed, 22 insertions, 22 deletions
diff --git a/cpukit/libdrvmgr/drvmgr.c b/cpukit/libdrvmgr/drvmgr.c
index a8d7c6dca9..f032e4ce3a 100644
--- a/cpukit/libdrvmgr/drvmgr.c
+++ b/cpukit/libdrvmgr/drvmgr.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <stdio.h>
diff --git a/cpukit/libdrvmgr/drvmgr.h b/cpukit/libdrvmgr/drvmgr.h
index d9a42b817d..a08424523c 100644
--- a/cpukit/libdrvmgr/drvmgr.h
+++ b/cpukit/libdrvmgr/drvmgr.h
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#ifndef _DRIVER_MANAGER_H_
diff --git a/cpukit/libdrvmgr/drvmgr_by_id.c b/cpukit/libdrvmgr/drvmgr_by_id.c
index f3514c78f3..e1bd4e8b03 100644
--- a/cpukit/libdrvmgr/drvmgr_by_id.c
+++ b/cpukit/libdrvmgr/drvmgr_by_id.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_by_name.c b/cpukit/libdrvmgr/drvmgr_by_name.c
index 23c9d623ee..ebf7750c78 100644
--- a/cpukit/libdrvmgr/drvmgr_by_name.c
+++ b/cpukit/libdrvmgr/drvmgr_by_name.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <string.h>
diff --git a/cpukit/libdrvmgr/drvmgr_confdefs.h b/cpukit/libdrvmgr/drvmgr_confdefs.h
index 40af2ebb84..65f89e6d22 100644
--- a/cpukit/libdrvmgr/drvmgr_confdefs.h
+++ b/cpukit/libdrvmgr/drvmgr_confdefs.h
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
/*
diff --git a/cpukit/libdrvmgr/drvmgr_dev_by_name.c b/cpukit/libdrvmgr/drvmgr_dev_by_name.c
index 0c24bd6494..c62cf0c9ad 100644
--- a/cpukit/libdrvmgr/drvmgr_dev_by_name.c
+++ b/cpukit/libdrvmgr/drvmgr_dev_by_name.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*
*/
diff --git a/cpukit/libdrvmgr/drvmgr_drvinf.c b/cpukit/libdrvmgr/drvmgr_drvinf.c
index 2eccf02d31..45926f1f12 100644
--- a/cpukit/libdrvmgr/drvmgr_drvinf.c
+++ b/cpukit/libdrvmgr/drvmgr_drvinf.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*
*/
diff --git a/cpukit/libdrvmgr/drvmgr_for_each_dev.c b/cpukit/libdrvmgr/drvmgr_for_each_dev.c
index 9d39ce1f08..26465071a1 100644
--- a/cpukit/libdrvmgr/drvmgr_for_each_dev.c
+++ b/cpukit/libdrvmgr/drvmgr_for_each_dev.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <string.h>
diff --git a/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c b/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
index f3e5bee19d..860e871ec7 100644
--- a/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
+++ b/cpukit/libdrvmgr/drvmgr_for_each_list_dev.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_func.c b/cpukit/libdrvmgr/drvmgr_func.c
index ae21cd3dbe..8d506d68fb 100644
--- a/cpukit/libdrvmgr/drvmgr_func.c
+++ b/cpukit/libdrvmgr/drvmgr_func.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_func_call.c b/cpukit/libdrvmgr/drvmgr_func_call.c
index ec9aa98455..d06b0527a7 100644
--- a/cpukit/libdrvmgr/drvmgr_func_call.c
+++ b/cpukit/libdrvmgr/drvmgr_func_call.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_init.c b/cpukit/libdrvmgr/drvmgr_init.c
index 7960f400f3..891ba0303c 100644
--- a/cpukit/libdrvmgr/drvmgr_init.c
+++ b/cpukit/libdrvmgr/drvmgr_init.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_internal.h b/cpukit/libdrvmgr/drvmgr_internal.h
index f0a01c4f01..6c4b24f46f 100644
--- a/cpukit/libdrvmgr/drvmgr_internal.h
+++ b/cpukit/libdrvmgr/drvmgr_internal.h
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
/* Structure hold all information the driver manager needs to know of. Used
diff --git a/cpukit/libdrvmgr/drvmgr_list.c b/cpukit/libdrvmgr/drvmgr_list.c
index 307900ce94..111bbc160a 100644
--- a/cpukit/libdrvmgr/drvmgr_list.c
+++ b/cpukit/libdrvmgr/drvmgr_list.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <stdlib.h>
diff --git a/cpukit/libdrvmgr/drvmgr_list.h b/cpukit/libdrvmgr/drvmgr_list.h
index d23bf47ce9..76028fb5bd 100644
--- a/cpukit/libdrvmgr/drvmgr_list.h
+++ b/cpukit/libdrvmgr/drvmgr_list.h
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
/*
diff --git a/cpukit/libdrvmgr/drvmgr_lock.c b/cpukit/libdrvmgr/drvmgr_lock.c
index 8061c5cb28..b5181c18a3 100644
--- a/cpukit/libdrvmgr/drvmgr_lock.c
+++ b/cpukit/libdrvmgr/drvmgr_lock.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <rtems.h>
diff --git a/cpukit/libdrvmgr/drvmgr_print.c b/cpukit/libdrvmgr/drvmgr_print.c
index 7a1a4405eb..80c1e6b061 100644
--- a/cpukit/libdrvmgr/drvmgr_print.c
+++ b/cpukit/libdrvmgr/drvmgr_print.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
/*
diff --git a/cpukit/libdrvmgr/drvmgr_res.c b/cpukit/libdrvmgr/drvmgr_res.c
index cc9a9a08aa..5faa61e58e 100644
--- a/cpukit/libdrvmgr/drvmgr_res.c
+++ b/cpukit/libdrvmgr/drvmgr_res.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <string.h>
diff --git a/cpukit/libdrvmgr/drvmgr_rw.c b/cpukit/libdrvmgr/drvmgr_rw.c
index 7d02d9ea90..c974366e56 100644
--- a/cpukit/libdrvmgr/drvmgr_rw.c
+++ b/cpukit/libdrvmgr/drvmgr_rw.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <string.h>
diff --git a/cpukit/libdrvmgr/drvmgr_translate.c b/cpukit/libdrvmgr/drvmgr_translate.c
index 6354ed954d..a512862d88 100644
--- a/cpukit/libdrvmgr/drvmgr_translate.c
+++ b/cpukit/libdrvmgr/drvmgr_translate.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
/*
diff --git a/cpukit/libdrvmgr/drvmgr_translate_check.c b/cpukit/libdrvmgr/drvmgr_translate_check.c
index 0205abdcc9..e5f0b7aa30 100644
--- a/cpukit/libdrvmgr/drvmgr_translate_check.c
+++ b/cpukit/libdrvmgr/drvmgr_translate_check.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <drvmgr/drvmgr.h>
diff --git a/cpukit/libdrvmgr/drvmgr_unregister.c b/cpukit/libdrvmgr/drvmgr_unregister.c
index 74d412da05..c243c0b54d 100644
--- a/cpukit/libdrvmgr/drvmgr_unregister.c
+++ b/cpukit/libdrvmgr/drvmgr_unregister.c
@@ -4,7 +4,7 @@
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
+ * http://www.rtems.org/license/LICENSE.
*/
#include <stdlib.h>