Revision 179192d38e8906f00479ec944c15b685400232b0 authored by Bill Gatliff on 18 December 2009, 15:57:22 UTC, committed by Greg Kroah-Hartman on 23 December 2009, 19:34:10 UTC
This patch corrects a problem where drivers/usb/otg is linked twice
if CONFIG_USB_ULPI is selected, resulting in a build error (symbol
conflict). The files in that directory are properly linked already
as part of CONFIG_USB, and need not be indicated specifically for
CONFIG_USB_ULPI.

Signed-off-by: Bill Gatliff <bgat@billgatliff.com>
Acked-by: Felipe Balbi <felipe.balbi@nokia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

1 parent ff3b968
Raw File
Makefile
#
# Makefile for the Linux IrDA protocol layer.
#

obj-$(CONFIG_IRDA) += irda.o
obj-$(CONFIG_IRLAN) += irlan/
obj-$(CONFIG_IRNET) += irnet/
obj-$(CONFIG_IRCOMM) += ircomm/

irda-y := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o \
          irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o \
          irttp.o irda_device.o irias_object.o wrapper.o af_irda.o \
	  discovery.o parameters.o irnetlink.o irmod.o
irda-$(CONFIG_PROC_FS) += irproc.o
irda-$(CONFIG_SYSCTL) += irsysctl.o
back to top