Revision f23c126bfabef88c201c8cc56bd3ccd9d59c51e0 authored by Linus Torvalds on 07 August 2011, 22:49:11 UTC, committed by Linus Torvalds on 07 August 2011, 22:49:11 UTC
The generic library code already exports the generic function, this was
left-over from the ARM-specific version that just got removed.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 4d44871
Raw File
Makefile
#
# Makefile for the Linux isofs filesystem routines.
#

obj-$(CONFIG_ISO9660_FS) += isofs.o

isofs-objs-y 			:= namei.o inode.o dir.o util.o rock.o export.o
isofs-objs-$(CONFIG_JOLIET)	+= joliet.o
isofs-objs-$(CONFIG_ZISOFS)	+= compress.o
isofs-objs			:= $(isofs-objs-y)
back to top