Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

clk: microchip: mpfs: update module authorship & licencing

Padmarao wrote the driver in its original, pre upstream form.
Daire & myself have been responsible for getting it upstreamable and
subsequent development.
Move Daire out of the blurb & into a MODULE_AUTHOR entry & add entries
for myself and Padmarao.

While we are at it, convert the MODULE_LICENSE field to its preferred
form of "GPL".

Reviewed-by: Daire McNamara <daire.mcnamara@microchip.com>
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20220909123123.2699583-15-conor.dooley@microchip.com

authored by

Conor Dooley and committed by
Claudiu Beznea
d325268b d8155697

+7 -3
+7 -3
drivers/clk/microchip/clk-mpfs.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0-only 2 2 /* 3 - * Daire McNamara,<daire.mcnamara@microchip.com> 4 - * Copyright (C) 2020 Microchip Technology Inc. All rights reserved. 3 + * PolarFire SoC MSS/core complex clock control 4 + * 5 + * Copyright (C) 2020-2022 Microchip Technology Inc. All rights reserved. 5 6 */ 6 7 #include <linux/auxiliary_bus.h> 7 8 #include <linux/clk-provider.h> ··· 510 509 module_exit(clk_mpfs_exit); 511 510 512 511 MODULE_DESCRIPTION("Microchip PolarFire SoC Clock Driver"); 513 - MODULE_LICENSE("GPL v2"); 512 + MODULE_AUTHOR("Padmarao Begari <padmarao.begari@microchip.com>"); 513 + MODULE_AUTHOR("Daire McNamara <daire.mcnamara@microchip.com>"); 514 + MODULE_AUTHOR("Conor Dooley <conor.dooley@microchip.com>"); 515 + MODULE_LICENSE("GPL");