https://github.com/torvalds/linux
Revision fce7fc79c8f7188dfc5eafa1b937bcc3c5a4c2f5 authored by Linus Torvalds on 26 March 2014, 00:43:34 UTC, committed by Linus Torvalds on 26 March 2014, 00:43:34 UTC
The previous commit removed the register_filesystem() call and the
associated error handling, but left the label for the error path that no
longer exists.  Remove that too.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent d6f2589
Raw File
Tip revision: fce7fc79c8f7188dfc5eafa1b937bcc3c5a4c2f5 authored by Linus Torvalds on 26 March 2014, 00:43:34 UTC
fs: remove now stale label in anon_inode_init()
Tip revision: fce7fc7
Makefile
#
#  Makefile for the Linux Controller Area Network core.
#

obj-$(CONFIG_CAN)	+= can.o
can-y			:= af_can.o proc.o

obj-$(CONFIG_CAN_RAW)	+= can-raw.o
can-raw-y		:= raw.o

obj-$(CONFIG_CAN_BCM)	+= can-bcm.o
can-bcm-y		:= bcm.o

obj-$(CONFIG_CAN_GW)	+= can-gw.o
can-gw-y		:= gw.o
back to top