Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 303527
b: refs/heads/master
c: 28a4b6a
h: refs/heads/master
i:
  303525: e0aa4e6
  303523: ce028de
  303519: e43c7df
v: v3
  • Loading branch information
Aleksey Babahin authored and Greg Kroah-Hartman committed Apr 10, 2012
1 parent 8ba4038 commit ad7082a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 810ec78e9a5d7de845598e8816370bcb2ccabf32
refs/heads/master: 28a4b6a690dfc000e86c8e02a1e1c1a9832252ec
9 changes: 9 additions & 0 deletions trunk/drivers/usb/serial/metro-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,14 @@ static void metrousb_read_int_callback(struct urb *urb)
__func__, result);
}

static void metrousb_write_int_callback(struct urb *urb)
{
struct usb_serial_port *port = urb->context;

dev_warn(&port->dev, "%s not implemented yet.\n",
__func__);
}

static void metrousb_cleanup(struct usb_serial_port *port)
{
dev_dbg(&port->dev, "%s\n", __func__);
Expand Down Expand Up @@ -377,6 +385,7 @@ static struct usb_serial_driver metrousb_device = {
.open = metrousb_open,
.close = metrousb_cleanup,
.read_int_callback = metrousb_read_int_callback,
.write_int_callback = metrousb_write_int_callback,
.attach = metrousb_startup,
.release = metrousb_shutdown,
.throttle = metrousb_throttle,
Expand Down

0 comments on commit ad7082a

Please sign in to comment.