During the latest refactoring, unsorted includes were a bit annoying. So, sort them to avoid this. Also, update the copyright due to said refactorings and remove the contact field in favor of MAINTAINERS entries.
Signed-off-by: Wolfram Sang <[email protected]> --- drivers/hwspinlock/hwspinlock_core.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/drivers/hwspinlock/hwspinlock_core.c b/drivers/hwspinlock/hwspinlock_core.c index 838bb2ab5eba..adf6fefb382f 100644 --- a/drivers/hwspinlock/hwspinlock_core.c +++ b/drivers/hwspinlock/hwspinlock_core.c @@ -3,26 +3,26 @@ * Hardware spinlock framework * * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com - * - * Contact: Ohad Ben-Cohen <[email protected]> + * Copyright (C) 2026 Sang Engineering + * Copyright (C) 2026 Renesas Solutions Corp. */ #define pr_fmt(fmt) "%s: " fmt, __func__ #include <linux/delay.h> #include <linux/device.h> -#include <linux/kernel.h> -#include <linux/module.h> -#include <linux/spinlock.h> -#include <linux/types.h> #include <linux/err.h> -#include <linux/jiffies.h> -#include <linux/radix-tree.h> #include <linux/hwspinlock.h> -#include <linux/pm_runtime.h> +#include <linux/jiffies.h> +#include <linux/kernel.h> +#include <linux/module.h> #include <linux/mutex.h> #include <linux/of.h> +#include <linux/pm_runtime.h> +#include <linux/radix-tree.h> #include <linux/slab.h> +#include <linux/spinlock.h> +#include <linux/types.h> struct hwspinlock_device; -- 2.51.0

