summaryrefslogtreecommitdiffstats
path: root/DuetPkg/PciBusNoEnumerationDxe
diff options
context:
space:
mode:
authorhhtian <hhtian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-28 12:39:50 +0000
committerhhtian <hhtian@6f19259b-4bc3-4df7-8a09-765794883524>2010-04-28 12:39:50 +0000
commitb1f700a8593435e2bdc8f9b3dc21bced4774c80f (patch)
tree887faf0349960472affe0f3b3e2d9be1a5842bb9 /DuetPkg/PciBusNoEnumerationDxe
parentf9b8ab563212511e9b46d5e73f9544f9b17d2fea (diff)
downloadedk2-b1f700a8593435e2bdc8f9b3dc21bced4774c80f.tar.gz
edk2-b1f700a8593435e2bdc8f9b3dc21bced4774c80f.tar.bz2
edk2-b1f700a8593435e2bdc8f9b3dc21bced4774c80f.zip
Update the copyright notice format
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10438 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'DuetPkg/PciBusNoEnumerationDxe')
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/ComponentName.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciBus.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciBus.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciCommand.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciCommand.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciIo.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciIo.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.h4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciRomTable.c4
-rw-r--r--DuetPkg/PciBusNoEnumerationDxe/PciRomTable.h4
22 files changed, 44 insertions, 44 deletions
diff --git a/DuetPkg/PciBusNoEnumerationDxe/ComponentName.c b/DuetPkg/PciBusNoEnumerationDxe/ComponentName.c
index 647e571d3c..dc4280eb68 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/ComponentName.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/ComponentName.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2007, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2007, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciBus.c b/DuetPkg/PciBusNoEnumerationDxe/PciBus.c
index 214e3994f6..b80869c3eb 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciBus.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciBus.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciBus.h b/DuetPkg/PciBusNoEnumerationDxe/PciBus.h
index 168108928f..3ddb5bfb85 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciBus.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciBus.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2007, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2007, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf b/DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf
index d9f2d760d0..86deb03d58 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciBusNoEnumeration.inf
@@ -1,7 +1,7 @@
## @file
#
-# Copyright (c) 2005 - 2010, Intel Corporation
-# All rights reserved. This program and the accompanying materials
+# Copyright (c) 2005 - 2010, Intel Corporation. All rights reserved.<BR>
+# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciCommand.c b/DuetPkg/PciBusNoEnumerationDxe/PciCommand.c
index ea00087cce..203bed3e59 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciCommand.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciCommand.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciCommand.h b/DuetPkg/PciBusNoEnumerationDxe/PciCommand.h
index 3e948fdbb2..2c724df189 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciCommand.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciCommand.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.c b/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.c
index d9327d43e7..bae266df64 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.h b/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.h
index 610d94929c..7fbe4bb476 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciDeviceSupport.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.c b/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.c
index 9d9c475aae..388ee94877 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2007, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2007, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.h b/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.h
index 1ba008b50c..fa2d339bea 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciDriverOverride.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.c b/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.c
index f24a83ea99..9f7dd4733d 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.h b/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.h
index 3146e67b20..f1125df384 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciEnumerator.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c b/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
index a21df4cec2..e5d4755f75 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2009, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.h b/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.h
index 3f028ee2c2..d30c75c33b 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciEnumeratorSupport.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciIo.c b/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
index e96cd891ba..8e7c815172 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciIo.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2009, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2009, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciIo.h b/DuetPkg/PciBusNoEnumerationDxe/PciIo.h
index 559e74f90a..0810ae3013 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciIo.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciIo.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.c b/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.c
index 064b634806..f1af103995 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.h b/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.h
index 2a650d20c1..7128ec47dc 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciOptionRomSupport.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.c b/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.c
index 20bd4a7428..2d9b87ab09 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.h b/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.h
index acbdccc6ef..9a44e7ecdb 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciPowerManagement.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.c b/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.c
index 7629384bab..ed868e2eaa 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.c
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.c
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2007, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2007, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php
diff --git a/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.h b/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.h
index db4dc1c12c..159a7f3004 100644
--- a/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.h
+++ b/DuetPkg/PciBusNoEnumerationDxe/PciRomTable.h
@@ -1,7 +1,7 @@
/*++
-Copyright (c) 2005 - 2006, Intel Corporation
-All rights reserved. This program and the accompanying materials
+Copyright (c) 2005 - 2006, Intel Corporation. All rights reserved.<BR>
+This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php