Skip to content

Commit

Permalink
staging:iio: Drop the unused buffer enable() and is_enabled() callbacks
Browse files Browse the repository at this point in the history
Currently none of the buffer implementations implements the enable() or
is_enable() nor does core code try to call these. So it is safe to remove them.

Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Lars-Peter Clausen authored and Greg Kroah-Hartman committed Dec 22, 2011
1 parent 68bc730 commit 307276c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/iio/Documentation/ring.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,3 @@ get_bytes_per_datum, set_bytes_per_datum
get_length / set_length
Get/set the number of complete scans that may be held by the buffer.

is_enabled
Query if ring buffer is in use
enable
Start the ring buffer.
5 changes: 0 additions & 5 deletions drivers/staging/iio/buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@ struct iio_buffer;
* @set_bytes_per_datum:set number of bytes per datum
* @get_length: get number of datums in buffer
* @set_length: set number of datums in buffer
* @is_enabled: query if buffer is currently being used
* @enable: enable the buffer
*
* The purpose of this structure is to make the buffer element
* modular as event for a given driver, different usecases may require
Expand All @@ -58,9 +56,6 @@ struct iio_buffer_access_funcs {
int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd);
int (*get_length)(struct iio_buffer *buffer);
int (*set_length)(struct iio_buffer *buffer, int length);

int (*is_enabled)(struct iio_buffer *buffer);
int (*enable)(struct iio_buffer *buffer);
};

/**
Expand Down

0 comments on commit 307276c

Please sign in to comment.