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.

Merge tag 'at91-soc-6.6' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux into soc/arm

AT91 SoC updates for 6.6:

It contains:
- explicitly include correct DT includes from Rob
- one cleanup which removes unused extern declaration on atmel_tcb.h

* tag 'at91-soc-6.6' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux:
ARM: at91: Remove unused extern declarations
ARM: at91: Explicitly include correct DT includes
soc: microchip: Explicitly include correct DT includes

Link: https://lore.kernel.org/r/20230804044118.231478-1-claudiu.beznea@tuxon.dev
Signed-off-by: Arnd Bergmann <arnd@arndb.de>

+2 -12
+1
arch/arm/mach-at91/pm.c
··· 12 12 #include <linux/of.h> 13 13 #include <linux/of_fdt.h> 14 14 #include <linux/of_platform.h> 15 + #include <linux/platform_device.h> 15 16 #include <linux/parser.h> 16 17 #include <linux/suspend.h> 17 18
-7
arch/arm/mach-at91/samv7.c
··· 5 5 * Copyright (C) 2013 Atmel, 6 6 * 2016 Andras Szemzo <szemzo.andras@gmail.com> 7 7 */ 8 - #include <linux/of.h> 9 - #include <linux/of_platform.h> 10 - #include <linux/of_address.h> 11 - #include <linux/slab.h> 12 8 #include <asm/mach/arch.h> 13 - #include <asm/mach/map.h> 14 - #include <asm/system_misc.h> 15 - #include "generic.h" 16 9 17 10 static const char *const samv7_dt_board_compat[] __initconst = { 18 11 "atmel,samv7",
-1
drivers/soc/atmel/sfr.c
··· 10 10 #include <linux/nvmem-provider.h> 11 11 #include <linux/random.h> 12 12 #include <linux/of.h> 13 - #include <linux/of_device.h> 14 13 #include <linux/platform_device.h> 15 14 #include <linux/regmap.h> 16 15
+1 -1
drivers/soc/microchip/mpfs-sys-controller.c
··· 13 13 #include <linux/module.h> 14 14 #include <linux/jiffies.h> 15 15 #include <linux/interrupt.h> 16 - #include <linux/of_platform.h> 16 + #include <linux/of.h> 17 17 #include <linux/mailbox_client.h> 18 18 #include <linux/platform_device.h> 19 19 #include <soc/microchip/mpfs.h>
-3
include/soc/at91/atmel_tcb.h
··· 77 77 bool allocated; 78 78 }; 79 79 80 - extern struct atmel_tc *atmel_tc_alloc(unsigned block); 81 - extern void atmel_tc_free(struct atmel_tc *tc); 82 - 83 80 /* platform-specific ATMEL_TC_TIMER_CLOCKx divisors (0 means 32KiHz) */ 84 81 extern const u8 atmel_tc_divisors[5]; 85 82