summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorMary Ruthven <mruthven@chromium.org>2022-09-13 10:46:24 -0500
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-09-13 19:50:31 +0000
commit9e31a10eccea4ff5d757af2fc4e54be5a8816334 (patch)
tree5c26acd4851210a21a5cc3d54b9c45c4c376f334 /driver
parent12d1cd4566508e2108bc0bd7fda08796327fba68 (diff)
downloadchrome-ec-9e31a10eccea4ff5d757af2fc4e54be5a8816334.tar.gz
fix ChromiumOS authors and whitespace warnings
BUG=none TEST=none Change-Id: I61b0b0106a43f723ec3bc805eb190aef00bbd05b Signed-off-by: Mary Ruthven <mruthven@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3894391 Reviewed-by: Vadim Bendebury <vbendeb@chromium.org> Commit-Queue: Vadim Bendebury <vbendeb@chromium.org>
Diffstat (limited to 'driver')
-rw-r--r--driver/build.mk2
-rw-r--r--driver/ina2xx.c2
-rw-r--r--driver/ina2xx.h2
-rw-r--r--driver/ina3221.c2
-rw-r--r--driver/ina3221.h2
-rw-r--r--driver/sync.c3
-rw-r--r--driver/sync.h3
-rw-r--r--driver/temp_sensor/thermistor.c2
-rw-r--r--driver/temp_sensor/thermistor.h2
-rw-r--r--driver/temp_sensor/thermistor_ncp15wb.c2
10 files changed, 10 insertions, 12 deletions
diff --git a/driver/build.mk b/driver/build.mk
index 5124b7c2d9..d2b3aae25d 100644
--- a/driver/build.mk
+++ b/driver/build.mk
@@ -1,5 +1,5 @@
# -*- makefile -*-
-# Copyright 2014 The Chromium OS Authors. All rights reserved.
+# Copyright 2014 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
diff --git a/driver/ina2xx.c b/driver/ina2xx.c
index 66c8742957..5dde1c66d7 100644
--- a/driver/ina2xx.c
+++ b/driver/ina2xx.c
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/driver/ina2xx.h b/driver/ina2xx.h
index 792cbe96a6..44b715c8bc 100644
--- a/driver/ina2xx.h
+++ b/driver/ina2xx.h
@@ -1,4 +1,4 @@
-/* Copyright 2014 The Chromium OS Authors. All rights reserved.
+/* Copyright 2014 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/driver/ina3221.c b/driver/ina3221.c
index 5b89f9694e..4f948cd997 100644
--- a/driver/ina3221.c
+++ b/driver/ina3221.c
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/driver/ina3221.h b/driver/ina3221.h
index 4d8c8211b4..1a8e323f30 100644
--- a/driver/ina3221.h
+++ b/driver/ina3221.h
@@ -1,4 +1,4 @@
-/* Copyright 2019 The Chromium OS Authors. All rights reserved.
+/* Copyright 2019 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
diff --git a/driver/sync.c b/driver/sync.c
index 91d161765a..b7f98dd39c 100644
--- a/driver/sync.c
+++ b/driver/sync.c
@@ -1,4 +1,4 @@
-/* Copyright 2017 The Chromium OS Authors. All rights reserved.
+/* Copyright 2017 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
@@ -131,4 +131,3 @@ const struct accelgyro_drv sync_drv = {
.get_data_rate = sync_get_data_rate,
.irq_handler = motion_irq_handler,
};
-
diff --git a/driver/sync.h b/driver/sync.h
index 1f6115a086..a349aab685 100644
--- a/driver/sync.h
+++ b/driver/sync.h
@@ -1,4 +1,4 @@
-/* Copyright 2017 The Chromium OS Authors. All rights reserved.
+/* Copyright 2017 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
@@ -15,4 +15,3 @@ extern const struct accelgyro_drv sync_drv;
void sync_interrupt(enum gpio_signal signal);
#endif /* __CROS_EC_VSYNC_H */
-
diff --git a/driver/temp_sensor/thermistor.c b/driver/temp_sensor/thermistor.c
index dab0e985ce..49f63d812e 100644
--- a/driver/temp_sensor/thermistor.c
+++ b/driver/temp_sensor/thermistor.c
@@ -1,4 +1,4 @@
-/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+/* Copyright 2018 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/driver/temp_sensor/thermistor.h b/driver/temp_sensor/thermistor.h
index 7ebe2b42ac..029474f253 100644
--- a/driver/temp_sensor/thermistor.h
+++ b/driver/temp_sensor/thermistor.h
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
diff --git a/driver/temp_sensor/thermistor_ncp15wb.c b/driver/temp_sensor/thermistor_ncp15wb.c
index 51e884ed35..512b34f015 100644
--- a/driver/temp_sensor/thermistor_ncp15wb.c
+++ b/driver/temp_sensor/thermistor_ncp15wb.c
@@ -1,4 +1,4 @@
-/* Copyright 2015 The Chromium OS Authors. All rights reserved.
+/* Copyright 2015 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/