diff mbox series

[XEN,v2,01/12] xen/build: Remove left over -DMAX_PHYS_IRQS

Message ID 20200117105358.607910-2-anthony.perard@citrix.com (mailing list archive)
State Superseded
Headers show
Series xen: Build system improvements | expand

Commit Message

Anthony PERARD Jan. 17, 2020, 10:53 a.m. UTC
From: Anthony PERARD <anthony.perard@gmail.com>

The use of MAX_PHYS_IRQS have been removed in cf5e6f2d3441 ("x86:
eliminate hard-coded NR_IRQS"), so remove the left over CFLAGS.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
 xen/Rules.mk | 4 ----
 1 file changed, 4 deletions(-)

Comments

Jan Beulich Jan. 17, 2020, 11:03 a.m. UTC | #1
On 17.01.2020 11:53, Anthony PERARD wrote:
> From: Anthony PERARD <anthony.perard@gmail.com>
> 
> The use of MAX_PHYS_IRQS have been removed in cf5e6f2d3441 ("x86:
> eliminate hard-coded NR_IRQS"), so remove the left over CFLAGS.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Reviewed-by: Jan Beulich <jbeulich@suse.com>
diff mbox series

Patch

diff --git a/xen/Rules.mk b/xen/Rules.mk
index fcdafd029342..22f25c5b2be8 100644
--- a/xen/Rules.mk
+++ b/xen/Rules.mk
@@ -71,10 +71,6 @@  ifneq ($(CONFIG_CC_IS_CLANG),y)
 CFLAGS += -Wa,--strip-local-absolute
 endif
 
-ifneq ($(max_phys_irqs),)
-CFLAGS-y                += -DMAX_PHYS_IRQS=$(max_phys_irqs)
-endif
-
 AFLAGS-y                += -D__ASSEMBLY__
 
 ALL_OBJS := $(ALL_OBJS-y)