diff options
author | Martin Roth <martin@coreboot.org> | 2019-09-23 17:38:27 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-10-22 12:55:10 +0000 |
commit | cddd6008f9434c013efcd3a0533265e54b245d75 (patch) | |
tree | c01d1f0f88e9221b8b1ebd9bfb8594b066ffa556 /src/drivers/aspeed | |
parent | e1b902c92c677ff4b3aeb5f12186a53cd719e192 (diff) |
AUTHORS: Move src/drivers/[a*-i*] copyrights into AUTHORS file
As discussed on the mailing list and voted upon, the coreboot project
is going to move the majority of copyrights out of the headers and into
an AUTHORS file. This will happen a bit at a time, as we'll be unifying
license headers at the same time.
Updated Authors file is in a separate commit.
Signed-off-by: Martin Roth <martin@coreboot.org>
Change-Id: I1acea8c975d14904b7e486dc57a1a67480a6ee6e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36178
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/aspeed')
-rw-r--r-- | src/drivers/aspeed/ast2050/ast2050.c | 2 | ||||
-rw-r--r-- | src/drivers/aspeed/common/aspeed_coreboot.h | 2 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_dp501.c | 10 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_dram_tables.h | 9 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_drv.h | 2 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_main.c | 2 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_post.c | 5 | ||||
-rw-r--r-- | src/drivers/aspeed/common/ast_tables.h | 2 |
8 files changed, 19 insertions, 15 deletions
diff --git a/src/drivers/aspeed/ast2050/ast2050.c b/src/drivers/aspeed/ast2050/ast2050.c index 59659b8974..b1bd276c74 100644 --- a/src/drivers/aspeed/ast2050/ast2050.c +++ b/src/drivers/aspeed/ast2050/ast2050.c @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. diff --git a/src/drivers/aspeed/common/aspeed_coreboot.h b/src/drivers/aspeed/common/aspeed_coreboot.h index d1dff330a0..d3b6981708 100644 --- a/src/drivers/aspeed/common/aspeed_coreboot.h +++ b/src/drivers/aspeed/common/aspeed_coreboot.h @@ -1,8 +1,6 @@ /* * This file is part of the coreboot project. * - * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or diff --git a/src/drivers/aspeed/common/ast_dp501.c b/src/drivers/aspeed/common/ast_dp501.c index 2e8b897464..99b087550f 100644 --- a/src/drivers/aspeed/common/ast_dp501.c +++ b/src/drivers/aspeed/common/ast_dp501.c @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * File taken from the Linux ast driver (v3.18.5) - * coreboot-specific includes added at top and/or contents modified - * as needed to function within the coreboot environment. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. @@ -15,6 +11,12 @@ * GNU General Public License for more details. */ +/* + * File taken from the Linux ast driver (v3.18.5) + * coreboot-specific includes added at top and/or contents modified + * as needed to function within the coreboot environment. + */ + #include <delay.h> #include "ast_drv.h" diff --git a/src/drivers/aspeed/common/ast_dram_tables.h b/src/drivers/aspeed/common/ast_dram_tables.h index 1d46ca6378..39495d3d18 100644 --- a/src/drivers/aspeed/common/ast_dram_tables.h +++ b/src/drivers/aspeed/common/ast_dram_tables.h @@ -1,10 +1,6 @@ /* * This file is part of the coreboot project. * - * File taken from the Linux ast driver (v3.18.5) - * coreboot-specific includes added at top and/or contents modified - * as needed to function within the coreboot environment. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. @@ -15,6 +11,11 @@ * GNU General Public License for more details. */ +/* + * File taken from the Linux ast driver (v3.18.5) + * coreboot-specific includes added at top and/or contents modified + * as needed to function within the coreboot environment. + */ #ifndef AST_DRAM_TABLES_H #define AST_DRAM_TABLES_H diff --git a/src/drivers/aspeed/common/ast_drv.h b/src/drivers/aspeed/common/ast_drv.h index 53640f11e5..c1794694e0 100644 --- a/src/drivers/aspeed/common/ast_drv.h +++ b/src/drivers/aspeed/common/ast_drv.h @@ -1,4 +1,6 @@ /* + * This file is part of the coreboot project. + * * Copyright 2012 Red Hat Inc. * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering * diff --git a/src/drivers/aspeed/common/ast_main.c b/src/drivers/aspeed/common/ast_main.c index 086b0a4f10..f9fb5e2361 100644 --- a/src/drivers/aspeed/common/ast_main.c +++ b/src/drivers/aspeed/common/ast_main.c @@ -1,4 +1,6 @@ /* + * This file is part of the coreboot project. + * * Copyright 2012 Red Hat Inc. * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering * diff --git a/src/drivers/aspeed/common/ast_post.c b/src/drivers/aspeed/common/ast_post.c index 5f935b9976..d14082e0ca 100644 --- a/src/drivers/aspeed/common/ast_post.c +++ b/src/drivers/aspeed/common/ast_post.c @@ -1,4 +1,6 @@ /* + * This file is part of the coreboot project. + * * Copyright 2012 Red Hat Inc. * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering * @@ -23,9 +25,6 @@ * of the Software. * */ -/* - * Authors: Dave Airlie <airlied@redhat.com> - */ #define COREBOOT_AST_FAILOVER_TIMEOUT 10000000 diff --git a/src/drivers/aspeed/common/ast_tables.h b/src/drivers/aspeed/common/ast_tables.h index 6c20f362ff..ae3c6d078a 100644 --- a/src/drivers/aspeed/common/ast_tables.h +++ b/src/drivers/aspeed/common/ast_tables.h @@ -1,4 +1,6 @@ /* + * This file is part of the coreboot project. + * * Copyright (c) 2005 ASPEED Technology Inc. * * Permission to use, copy, modify, distribute, and sell this software and its |