Commit ec909874 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

greybus: turn off warnings for es1-ap-usb.c to make it easier to build for now...

parent 6dca7b97
......@@ -34,7 +34,7 @@ struct es1_ap_dev {
*/
static struct es1_ap_dev *es1_ap_dev;
static void ap_in_callback(struct urb *urb)
void ap_in_callback(struct urb *urb)
{
struct device *dev = &urb->dev->dev;
int status = urb->status;
......@@ -69,7 +69,7 @@ static void ap_in_callback(struct urb *urb)
dev_err(dev, "Can not submit urb for AP data: %d\n", retval);
}
static void ap_out_callback(struct urb *urb)
void ap_out_callback(struct urb *urb)
{
struct device *dev = &urb->dev->dev;
int status = urb->status;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment