usbd:fix get_bp workaround

Change-Id: I6967dc515e3da4330503eb716e8f0165df71b8f1

http://gerrit.minix3.org/#/c/2697/
This commit is contained in:
Kees Jongenburger 2014-05-26 16:47:55 +02:00 committed by Lionel Sambuc
parent 9cc744ad52
commit 146e5a99e4
2 changed files with 2 additions and 13 deletions

View file

@ -11,9 +11,10 @@ CPPFLAGS+= -I${.CURDIR}/../../include
DPADD+= ${LIBDDEKIT} ${LIBDDEKIT_USB_SERVER} ${LIBDEVMAN} ${LIBUSB} ${LIBMINC} ${LIBCLKCONF}
LDADD+= -lddekit -lddekit_usb_server -ldevman -lusb -lminc -lclkconf
LDADD+= -lsys -lminlib
MAN=
BINDIR?= /usr/sbin
.include <minix.service.mk>
.include <minix.service.mk>

View file

@ -263,15 +263,3 @@ void hcd_completion_cb(void * priv)
completion_cb(priv);
}
/* TODO: to be removed when this is linkable */
/*===========================================================================*
* get_bp *
*===========================================================================*/
unsigned int get_bp(void)
{
DEBUG_DUMP;
return EXIT_SUCCESS;
}