]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - include/linux/virtio.h
Parallel port: convert port_mutex to the mutex API
[mv-sheeva.git] / include / linux / virtio.h
index 78408d5237c166950d9298eb83029fca9363342f..260d1fcf29a4222c011ab39176b1e2e4d46a98a3 100644 (file)
@@ -45,9 +45,6 @@ struct virtqueue
  *     vq: the struct virtqueue we're talking about.
  *     This returns "false" (and doesn't re-enable) if there are pending
  *     buffers in the queue, to avoid a race.
- * @shutdown: "unadd" all buffers.
- *     vq: the struct virtqueue we're talking about.
- *     Remove everything from the queue.
  *
  * Locking rules are straightforward: the driver is responsible for
  * locking.  No two operations may be invoked simultaneously.
@@ -67,8 +64,6 @@ struct virtqueue_ops {
 
        void (*disable_cb)(struct virtqueue *vq);
        bool (*enable_cb)(struct virtqueue *vq);
-
-       void (*shutdown)(struct virtqueue *vq);
 };
 
 /**