summaryrefslogtreecommitdiff
path: root/ifpps/Makefile
blob: 6c8ac43920118511ea8ca8e67273330dd8f72791 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ifpps-libs =	$(shell pkg-config --libs ncurses)

ifpps-objs =	xmalloc.o \
		ioops.o \
		promisc.o \
		str.o \
		link.o \
		sock.o \
		dev.o \
		sig.o \
		screen.o \
		ifpps.o
t;mpe@ellerman.id.au>2016-09-06 14:54:08 +1000 commitd81d8258218228d3137055afe8acf981c3ebed46 (patch) tree3a99b7e9bcd95ecae02167b6fbdf16e9a1d8a684 parent78a3e8889b4b6b99775ed954696ff3e017f5d19b (diff)
powerpc/pseries: Fix little endian build with CONFIG_KEXEC=n
On ppc64le, builds with CONFIG_KEXEC=n fail with: arch/powerpc/platforms/pseries/setup.c: In function ‘pseries_big_endian_exceptions’: arch/powerpc/platforms/pseries/setup.c:403:13: error: implicit declaration of function ‘kdump_in_progress’ if (rc && !kdump_in_progress()) This is because pseries/setup.c includes <linux/kexec.h>, but kdump_in_progress() is defined in <asm/kexec.h>. This is a problem because the former only includes the latter if CONFIG_KEXEC_CORE=y. Fix it by including <asm/kexec.h> directly, as is done in powernv/setup.c. Fixes: d3cbff1b5a90 ("powerpc: Put exception configuration in a common place") Signed-off-by: Thiago Jung Bauermann <bauerman@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat