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

Commit e9229faf authored by Tracey Dent's avatar Tracey Dent Committed by Jiri Kosina
Browse files

HID: usbhid: Clean up makefile (-y instead of -objs)



Changed Makefile to use <modules>-y instead of <modules>-objs because -objs is
deprecated and should now be switched. According to (documentation/kbuild/makefiles.txt).

Signed-off-by: default avatarTracey Dent <tdent48227@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent d47d6124
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -3,15 +3,15 @@
#

# Multipart objects.
usbhid-objs	:= hid-core.o hid-quirks.o
usbhid-y	:= hid-core.o hid-quirks.o

# Optional parts of multipart objects.

ifeq ($(CONFIG_USB_HIDDEV),y)
	usbhid-objs	+= hiddev.o
	usbhid-y	+= hiddev.o
endif
ifeq ($(CONFIG_HID_PID),y)
	usbhid-objs	+= hid-pidff.o
	usbhid-y	+= hid-pidff.o
endif

obj-$(CONFIG_USB_HID)		+= usbhid.o