diff options
author | Tom Rini <trini@konsulko.com> | 2022-06-25 11:02:42 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-07-07 09:29:08 -0400 |
commit | a457ebd78684ba0dba18b1bb5564331f47c180ed (patch) | |
tree | 5efa31d64e3e9b606711b1da236ef271b3dc0b6e /arch/arm/cpu/pxa/timer.c | |
parent | fcf4fa71ab96650e9097ce06b39e4515a353ac04 (diff) |
arm: Remove PXA architecture support
With the last platform for this architecture removed, remove the rest of
the architecture support as well.
Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/cpu/pxa/timer.c')
-rw-r--r-- | arch/arm/cpu/pxa/timer.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/arm/cpu/pxa/timer.c b/arch/arm/cpu/pxa/timer.c deleted file mode 100644 index 8e9d610441e..00000000000 --- a/arch/arm/cpu/pxa/timer.c +++ /dev/null @@ -1,16 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Marvell PXA2xx/3xx timer driver - * - * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> - */ - -#include <common.h> -#include <init.h> -#include <asm/io.h> - -int timer_init(void) -{ - writel(0, CONFIG_SYS_TIMER_COUNTER); - return 0; -} |