Commit 61029e2b authored by Arnd Bergmann's avatar Arnd Bergmann

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.devSigned-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 5df5b2e0 96a49448
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/of.h> #include <linux/of.h>
#include <linux/of_fdt.h> #include <linux/of_fdt.h>
#include <linux/of_platform.h> #include <linux/of_platform.h>
#include <linux/platform_device.h>
#include <linux/parser.h> #include <linux/parser.h>
#include <linux/suspend.h> #include <linux/suspend.h>
......
...@@ -5,14 +5,7 @@ ...@@ -5,14 +5,7 @@
* Copyright (C) 2013 Atmel, * Copyright (C) 2013 Atmel,
* 2016 Andras Szemzo <szemzo.andras@gmail.com> * 2016 Andras Szemzo <szemzo.andras@gmail.com>
*/ */
#include <linux/of.h>
#include <linux/of_platform.h>
#include <linux/of_address.h>
#include <linux/slab.h>
#include <asm/mach/arch.h> #include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/system_misc.h>
#include "generic.h"
static const char *const samv7_dt_board_compat[] __initconst = { static const char *const samv7_dt_board_compat[] __initconst = {
"atmel,samv7", "atmel,samv7",
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
#include <linux/nvmem-provider.h> #include <linux/nvmem-provider.h>
#include <linux/random.h> #include <linux/random.h>
#include <linux/of.h> #include <linux/of.h>
#include <linux/of_device.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/regmap.h> #include <linux/regmap.h>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <linux/module.h> #include <linux/module.h>
#include <linux/jiffies.h> #include <linux/jiffies.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/of_platform.h> #include <linux/of.h>
#include <linux/mailbox_client.h> #include <linux/mailbox_client.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <soc/microchip/mpfs.h> #include <soc/microchip/mpfs.h>
......
...@@ -77,9 +77,6 @@ struct atmel_tc { ...@@ -77,9 +77,6 @@ struct atmel_tc {
bool allocated; bool allocated;
}; };
extern struct atmel_tc *atmel_tc_alloc(unsigned block);
extern void atmel_tc_free(struct atmel_tc *tc);
/* platform-specific ATMEL_TC_TIMER_CLOCKx divisors (0 means 32KiHz) */ /* platform-specific ATMEL_TC_TIMER_CLOCKx divisors (0 means 32KiHz) */
extern const u8 atmel_tc_divisors[5]; extern const u8 atmel_tc_divisors[5];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment