fbdev: remove object duplication in Makefile
The objects in $(fb-objs) $(fb-y) $(fb-m) are linked to fb.ko . This line adds $(fb-y) to fb-objs, so the objects from $(fb-y) are listed twice as the dependency of the module. It works because Kbuild trims the duplicated objects from linking, but there is no good reason to have this line. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200106081352.27730-1-masahiroy@kernel.org
This commit is contained in:
committed by
Bartlomiej Zolnierkiewicz
parent
914d66312d
commit
31a2a32921
@@ -16,7 +16,6 @@ fb-y += fbcon_rotate.o fbcon_cw.o fbcon_ud.o \
|
|||||||
fbcon_ccw.o
|
fbcon_ccw.o
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
fb-objs := $(fb-y)
|
|
||||||
|
|
||||||
obj-$(CONFIG_FB_CFB_FILLRECT) += cfbfillrect.o
|
obj-$(CONFIG_FB_CFB_FILLRECT) += cfbfillrect.o
|
||||||
obj-$(CONFIG_FB_CFB_COPYAREA) += cfbcopyarea.o
|
obj-$(CONFIG_FB_CFB_COPYAREA) += cfbcopyarea.o
|
||||||
|
|||||||
Reference in New Issue
Block a user