diff options
author | Tom Hughes <tomhughes@chromium.org> | 2019-06-18 11:41:01 -0700 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2019-06-19 00:30:43 +0000 |
commit | f36a4e530c40284228b6954564cd3836b4588401 (patch) | |
tree | d33a7fd65ecf3bccf4571300cd2ead9c999369c3 /chip/g | |
parent | 30cc96d5c81e8a5f2ce4319c999fa92e3a1a4650 (diff) | |
download | chrome-ec-f36a4e530c40284228b6954564cd3836b4588401.tar.gz |
LICENSE: remove unnecessary (c) after Copyright
Ran the following command:
git grep -l 'Copyright (c)' | \
xargs sed -i 's/Copyright (c)/Copyright/g'
BRANCH=none
BUG=none
TEST=make buildall -j
Change-Id: I6cc4a0f7e8b30d5b5f97d53c031c299f3e164ca7
Signed-off-by: Tom Hughes <tomhughes@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1663262
Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'chip/g')
-rw-r--r-- | chip/g/build.mk | 2 | ||||
-rw-r--r-- | chip/g/clock.c | 2 | ||||
-rw-r--r-- | chip/g/config_chip.h | 2 | ||||
-rw-r--r-- | chip/g/gpio.c | 2 | ||||
-rw-r--r-- | chip/g/hwtimer.c | 2 | ||||
-rw-r--r-- | chip/g/idle.c | 2 | ||||
-rw-r--r-- | chip/g/pmu.c | 2 | ||||
-rw-r--r-- | chip/g/pmu.h | 2 | ||||
-rw-r--r-- | chip/g/registers.h | 2 | ||||
-rw-r--r-- | chip/g/system.c | 2 | ||||
-rw-r--r-- | chip/g/uart.c | 2 | ||||
-rw-r--r-- | chip/g/uartn.c | 2 | ||||
-rw-r--r-- | chip/g/usb.c | 2 | ||||
-rw-r--r-- | chip/g/usb_console.c | 2 | ||||
-rw-r--r-- | chip/g/usb_endpoints.c | 2 | ||||
-rw-r--r-- | chip/g/usb_hid_keyboard.c | 2 | ||||
-rw-r--r-- | chip/g/watchdog.c | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/chip/g/build.mk b/chip/g/build.mk index d4633748eb..3a62428a25 100644 --- a/chip/g/build.mk +++ b/chip/g/build.mk @@ -1,5 +1,5 @@ # -*- makefile -*- -# Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +# Copyright 2014 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # diff --git a/chip/g/clock.c b/chip/g/clock.c index 0dc10f9c68..c590ee0611 100644 --- a/chip/g/clock.c +++ b/chip/g/clock.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/config_chip.h b/chip/g/config_chip.h index 4eaa86f53d..36b88697b1 100644 --- a/chip/g/config_chip.h +++ b/chip/g/config_chip.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/gpio.c b/chip/g/gpio.c index 79b40124d5..e3d9c8cc05 100644 --- a/chip/g/gpio.c +++ b/chip/g/gpio.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/hwtimer.c b/chip/g/hwtimer.c index 91dba78c40..9fbe3f0920 100644 --- a/chip/g/hwtimer.c +++ b/chip/g/hwtimer.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/idle.c b/chip/g/idle.c index 1ed16de4a4..ae7760ced6 100644 --- a/chip/g/idle.c +++ b/chip/g/idle.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/pmu.c b/chip/g/pmu.c index a434a2bde5..afd5906b63 100644 --- a/chip/g/pmu.c +++ b/chip/g/pmu.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/pmu.h b/chip/g/pmu.h index 96c23418f1..b84fab3fd5 100644 --- a/chip/g/pmu.h +++ b/chip/g/pmu.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/registers.h b/chip/g/registers.h index 0e69b75eaa..e928e01650 100644 --- a/chip/g/registers.h +++ b/chip/g/registers.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/system.c b/chip/g/system.c index a8df1eba38..f28e0a5c5d 100644 --- a/chip/g/system.c +++ b/chip/g/system.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/uart.c b/chip/g/uart.c index 33c992dfc2..0ae55c8eb0 100644 --- a/chip/g/uart.c +++ b/chip/g/uart.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/uartn.c b/chip/g/uartn.c index da85c5cb0a..ce90b7b290 100644 --- a/chip/g/uartn.c +++ b/chip/g/uartn.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/usb.c b/chip/g/usb.c index 27ffde40aa..72fbe75ea8 100644 --- a/chip/g/usb.c +++ b/chip/g/usb.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/usb_console.c b/chip/g/usb_console.c index 515229afe4..6dd7286dde 100644 --- a/chip/g/usb_console.c +++ b/chip/g/usb_console.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/usb_endpoints.c b/chip/g/usb_endpoints.c index 0cf73e2b13..fe40659778 100644 --- a/chip/g/usb_endpoints.c +++ b/chip/g/usb_endpoints.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. * diff --git a/chip/g/usb_hid_keyboard.c b/chip/g/usb_hid_keyboard.c index 62167d93ca..d6b529839f 100644 --- a/chip/g/usb_hid_keyboard.c +++ b/chip/g/usb_hid_keyboard.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ diff --git a/chip/g/watchdog.c b/chip/g/watchdog.c index aa79367353..1ffd203843 100644 --- a/chip/g/watchdog.c +++ b/chip/g/watchdog.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved. +/* Copyright 2014 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ |