Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cfbef3cb authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Linus Torvalds
Browse files

procfs: simplify conditional processing of fs/proc.o.



Since the entire fs/proc directory is conditionally included based on
CONFIG_PROC_FS, it's redundant to check that same variable within that
directory.

Signed-off-by: default avatarRobert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a2a20c41
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -2,7 +2,7 @@
# Makefile for the Linux proc filesystem routines.
# Makefile for the Linux proc filesystem routines.
#
#


obj-$(CONFIG_PROC_FS) += proc.o
obj-y   += proc.o


proc-y			:= nommu.o task_nommu.o
proc-y			:= nommu.o task_nommu.o
proc-$(CONFIG_MMU)	:= mmu.o task_mmu.o
proc-$(CONFIG_MMU)	:= mmu.o task_mmu.o