diff options
author | Andrew Davis <afd@ti.com> | 2023-08-02 17:33:33 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2023-08-12 11:49:32 +0200 |
commit | e4011d83f2c72a5ce94d0d89e47d9e597884f6e1 (patch) | |
tree | 8706ca5be86d3783762b2dd49c0c0fa48eff41d2 /arch/arm/mach-nspire | |
parent | ARM: nspire: Use syscon-reboot to handle restart (diff) | |
download | linux-e4011d83f2c72a5ce94d0d89e47d9e597884f6e1.tar.xz linux-e4011d83f2c72a5ce94d0d89e47d9e597884f6e1.zip |
ARM: nspire: Remove unused header file mmio.h
The Nspire boardfile platform drivers have all been converted. None
of the definitions in this header are used anymore. Remove it.
While here lets remove all the other unused headers and the file
name from in the file itself.
Signed-off-by: Andrew Davis <afd@ti.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-nspire')
-rw-r--r-- | arch/arm/mach-nspire/mmio.h | 13 | ||||
-rw-r--r-- | arch/arm/mach-nspire/nspire.c | 7 |
2 files changed, 0 insertions, 20 deletions
diff --git a/arch/arm/mach-nspire/mmio.h b/arch/arm/mach-nspire/mmio.h deleted file mode 100644 index 2ce0656139ec..000000000000 --- a/arch/arm/mach-nspire/mmio.h +++ /dev/null @@ -1,13 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-only */ -/* - * linux/arch/arm/mach-nspire/mmio.h - * - * Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au> - */ - -#define NSPIRE_PWR_PHYS_BASE 0x900B0000 -#define NSPIRE_PWR_VIRT_BASE 0xFEEB0000 -#define NSPIRE_PWR_BUS_DISABLE1 0x18 -#define NSPIRE_PWR_BUS_DISABLE2 0x20 - -#define NSPIRE_LCD_PHYS_BASE 0xC0000000 diff --git a/arch/arm/mach-nspire/nspire.c b/arch/arm/mach-nspire/nspire.c index f0c0d6fe2136..2fbfc23237ff 100644 --- a/arch/arm/mach-nspire/nspire.c +++ b/arch/arm/mach-nspire/nspire.c @@ -1,16 +1,9 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * linux/arch/arm/mach-nspire/nspire.c - * * Copyright (C) 2013 Daniel Tang <tangrs@tangrs.id.au> */ -#include <linux/init.h> -#include <linux/io.h> #include <asm/mach/arch.h> -#include <asm/mach-types.h> - -#include "mmio.h" static const char *const nspire_dt_match[] __initconst = { "ti,nspire", |