diff options
author | Xiaofei Tan <tanxiaofei@huawei.com> | 2020-06-28 08:57:06 +0800 |
---|---|---|
committer | Stefano Stabellini <sstabellini@kernel.org> | 2020-06-29 16:16:06 -0700 |
commit | caef73cf207074a62701c95c317a97b2f8c1e04e (patch) | |
tree | 19d918fac35e482cdda73b4851985b3f85f9ecd1 /arch | |
parent | a952f64d14e5f8461f04cd9d729037db9099ddb0 (diff) | |
download | linux-caef73cf207074a62701c95c317a97b2f8c1e04e.tar.bz2 |
arm/xen: remove the unused macro GRANT_TABLE_PHYSADDR
Fix the following sparse warning:
arch/arm64/xen/../../arm/xen/enlighten.c:244: warning: macro
"GRANT_TABLE_PHYSADDR" is not used [-Wunused-macros]
It is an isolated macro, and should be removed when its last user
was deleted in the following commit 3cf4095d7446 ("arm/xen: Use
xen_xlate_map_ballooned_pages to setup grant table")
Signed-off-by: Xiaofei Tan <tanxiaofei@huawei.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/xen/enlighten.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c index fd4e1ce1daf9..e93145d72c26 100644 --- a/arch/arm/xen/enlighten.c +++ b/arch/arm/xen/enlighten.c @@ -241,7 +241,6 @@ static int __init fdt_find_hyper_node(unsigned long node, const char *uname, * see Documentation/devicetree/bindings/arm/xen.txt for the * documentation of the Xen Device Tree format. */ -#define GRANT_TABLE_PHYSADDR 0 void __init xen_early_init(void) { of_scan_flat_dt(fdt_find_hyper_node, NULL); |