platform/surface: Update copyright year of various drivers
authorMaximilian Luz <luzmaximilian@gmail.com>
Fri, 24 Jun 2022 20:58:00 +0000 (22:58 +0200)
committerHans de Goede <hdegoede@redhat.com>
Sat, 2 Jul 2022 09:23:30 +0000 (11:23 +0200)
Update the copyright of various Surface drivers to the current year.

Signed-off-by: Maximilian Luz <luzmaximilian@gmail.com>
Link: https://lore.kernel.org/r/20220624205800.1355621-4-luzmaximilian@gmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
22 files changed:
drivers/platform/surface/aggregator/Kconfig
drivers/platform/surface/aggregator/Makefile
drivers/platform/surface/aggregator/bus.c
drivers/platform/surface/aggregator/bus.h
drivers/platform/surface/aggregator/controller.c
drivers/platform/surface/aggregator/controller.h
drivers/platform/surface/aggregator/core.c
drivers/platform/surface/aggregator/ssh_msgb.h
drivers/platform/surface/aggregator/ssh_packet_layer.c
drivers/platform/surface/aggregator/ssh_packet_layer.h
drivers/platform/surface/aggregator/ssh_parser.c
drivers/platform/surface/aggregator/ssh_parser.h
drivers/platform/surface/aggregator/ssh_request_layer.c
drivers/platform/surface/aggregator/ssh_request_layer.h
drivers/platform/surface/aggregator/trace.h
drivers/platform/surface/surface_acpi_notify.c
drivers/platform/surface/surface_aggregator_cdev.c
drivers/platform/surface/surface_aggregator_registry.c
drivers/platform/surface/surface_dtx.c
drivers/platform/surface/surface_gpe.c
drivers/platform/surface/surface_hotplug.c
drivers/platform/surface/surface_platform_profile.c

index cab020324256277b18c9c06411e11ba9886c1381..c114f9dd5fe1ce96d55d1f337efa2aaf31367259 100644 (file)
@@ -1,5 +1,5 @@
 # SPDX-License-Identifier: GPL-2.0+
-# Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+# Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
 
 menuconfig SURFACE_AGGREGATOR
        tristate "Microsoft Surface System Aggregator Module Subsystem and Drivers"
index c0d550eda5cd5f1b83bbc2f0bb3d0e87f0b37886..fdf664a217f989c7ec7c8e08011fe6b56fddb833 100644 (file)
@@ -1,5 +1,5 @@
 # SPDX-License-Identifier: GPL-2.0+
-# Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+# Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
 
 # For include/trace/define_trace.h to include trace.h
 CFLAGS_core.o = -I$(src)
index e0b0381a2834b6535e8059f3064891c39671aba5..de539938896e25c3f9d3232641fdbf1f3fe11aa1 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Surface System Aggregator Module bus and device integration.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/device.h>
index 6964ee84e79c7dbb57e7d158e89fba19dbb42cca..5b4dbf21906cd1e3655ebe64a938f9c8253511e8 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Surface System Aggregator Module bus and device integration.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_BUS_H
index 6de834b52b63ff7846f45514a6cbb0d612bd72e3..43e7651991371b5ea292d0d379f8dcfd72dfeab4 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Main SSAM/SSH controller structure and functionality.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/acpi.h>
index a0963c3562ff12527c8a8afc832426d3b08a7805..f0d987abc51e3cdcacfdbecb5fb284a8682fbd06 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Main SSAM/SSH controller structure and functionality.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_CONTROLLER_H
index a62c5dfe42d64395a97bafba04e88d632615034d..1a6373dea109cc2b63ad887bb0adb08cadd4a7e5 100644 (file)
@@ -7,7 +7,7 @@
  * Handles communication via requests as well as enabling, disabling, and
  * relaying of events.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/acpi.h>
index e562958ffdf0c963b0bfeb661a9bc15d096c1f1f..f3ecad92eefd8136103163ea462c0e05f980827a 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH message builder functions.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_SSH_MSGB_H
index 8a4451c1ffe57d1672cefbf69ee9804401c8dc29..6748fe4ac5d5fdb53502fe9210e99369c19cd557 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH packet transport layer.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <asm/unaligned.h>
index 2eb329f0b91af35c4d53f11f1826f695bc280985..64633522f9716ea60e4ca9f35fa2ae2485c23574 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH packet transport layer.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_SSH_PACKET_LAYER_H
index b77912f8f13b2c5b52d679c20c231fa7521a6d5e..a6f6686943652732effccab6515abc71e33d8a68 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH message parser.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <asm/unaligned.h>
index 3bd6e180fd168c54b97f8b22d9ef58ecd59b5662..801d8fa69fb521abbf9905d159ec85c5b1eafc94 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH message parser.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_SSH_PARSER_H
index 790f7f0eee98b1eac781a0cb14b546362185ecfe..f5565570f16c79f927179a018464cc6bf6b70d7f 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH request transport layer.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <asm/unaligned.h>
index 9c3cbae2d4bdf44509ad4c924dd3000e7a7b3a8f..4e387a0313514fb30025672fae9b3a9f8d744586 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * SSH request transport layer.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #ifndef _SURFACE_AGGREGATOR_SSH_REQUEST_LAYER_H
index cc9e73fbc18e9bfcfaab774b06c91b16856e5929..2a2c17771d0145222fda73585157c7119bdfffc2 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Trace points for SSAM/SSH.
  *
- * Copyright (C) 2020-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2020-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #undef TRACE_SYSTEM
index c0e12f0b9b79ba633efa44a09b2c33e26318b6a6..44e31797055724d085ef5742dfbe47cc8fbba12b 100644 (file)
@@ -8,7 +8,7 @@
  * notifications sent from ACPI via the SAN interface by providing them to any
  * registered external driver.
  *
- * Copyright (C) 2019-2020 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <asm/unaligned.h>
index 30fb50fde450812e23fef9e9c794225cc72e4389..492c82e691827ff75806fbc47c517056f7d2b934 100644 (file)
@@ -3,7 +3,7 @@
  * Provides user-space access to the SSAM EC via the /dev/surface/aggregator
  * misc device. Intended for debugging and development.
  *
- * Copyright (C) 2020-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2020-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/fs.h>
index 0cbb7f3a6b2deb40316b202b7bc408cd8797f8b3..d5655f6a4a4162b245b2bc3c62bfe8cf6a37ab0f 100644 (file)
@@ -6,7 +6,7 @@
  * cannot be auto-detected. Provides device-hubs and performs instantiation
  * for these devices.
  *
- * Copyright (C) 2020-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2020-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/acpi.h>
index 1203b9a829939abb954e67b4371d7ff0c66fbe82..ed36944467f9ff455266d9bf4f7f244c8f4c735c 100644 (file)
@@ -8,7 +8,7 @@
  * acknowledge (to speed things up), abort (e.g. in case the dGPU is still in
  * use), or request detachment via user-space.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/fs.h>
index ec66fde28e75a873cd728664b6955ca2508952b9..27365cbe1ee9fff475e6f6afc87a9e8e19217ffa 100644 (file)
@@ -4,7 +4,7 @@
  * properly configuring the respective GPEs. Required for wakeup via lid on
  * newer Intel-based Microsoft Surface devices.
  *
- * Copyright (C) 2020 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2020-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
index cfcc15cfbacb3b907f94b876647f10481865a186..f004a24952013fa0127eb42ea398e0b61a1dc1df 100644 (file)
@@ -10,7 +10,7 @@
  * Event signaling is handled via ACPI, which will generate the appropriate
  * device-check notifications to be picked up by the PCIe hot-plug driver.
  *
- * Copyright (C) 2019-2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2019-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <linux/acpi.h>
index 6373d3b5eb7f843b762b817de6724826196782ac..fbf2e11fd6ce75447a83545fee7a0b4bb9161a2f 100644 (file)
@@ -3,7 +3,7 @@
  * Surface Platform Profile / Performance Mode driver for Surface System
  * Aggregator Module (thermal subsystem).
  *
- * Copyright (C) 2021 Maximilian Luz <luzmaximilian@gmail.com>
+ * Copyright (C) 2021-2022 Maximilian Luz <luzmaximilian@gmail.com>
  */
 
 #include <asm/unaligned.h>