Remove unnecessary changes; trim down logging

This commit is contained in:
Michal Moskal
2017-07-25 15:10:06 +01:00
parent bcf597143a
commit d84b2b187c
5 changed files with 5 additions and 26 deletions

View File

@ -80,9 +80,6 @@ static void ModuleExit(void);
#include <linux/utsname.h>
#include <linux/device.h>
void myReset(void);
static int dUsbInit(void);
static void dUsbExit(void);
static struct fsg_common *fsg_common;
#include "computil.c" // The composite framework used as utility file
@ -748,8 +745,3 @@ static int msg_bind(struct usb_composite_dev *cdev)
static int msg_config(struct usb_configuration *c) {
return fsg_add(c->cdev, c, fsg_common);
}
void myReset() {
dUsbExit();
dUsbInit();
}