Commit f2348c73 authored by Ian Abbott's avatar Ian Abbott Committed by Greg Kroah-Hartman

staging: comedi: mite.h: whitespace changes in function declarations

Reformat some function declarations to avoid bunching up near column 80.

Also add a blank line after a `struct` definition.
Signed-off-by: default avatarIan Abbott <abbotti@mev.co.uk>
Reviewed-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 65f6fac9
...@@ -77,16 +77,13 @@ static inline int mite_setup(struct comedi_device *dev, ...@@ -77,16 +77,13 @@ static inline int mite_setup(struct comedi_device *dev,
void mite_detach(struct mite_struct *mite); void mite_detach(struct mite_struct *mite);
struct mite_dma_descriptor_ring *mite_alloc_ring(struct mite_struct *mite); struct mite_dma_descriptor_ring *mite_alloc_ring(struct mite_struct *mite);
void mite_free_ring(struct mite_dma_descriptor_ring *ring); void mite_free_ring(struct mite_dma_descriptor_ring *ring);
struct mite_channel *mite_request_channel_in_range(struct mite_struct *mite, struct mite_channel *
struct mite_request_channel_in_range(struct mite_struct *mite,
mite_dma_descriptor_ring struct mite_dma_descriptor_ring *ring,
*ring, unsigned min_channel, unsigned min_channel, unsigned max_channel);
unsigned max_channel); static inline struct mite_channel *
static inline struct mite_channel *mite_request_channel(struct mite_struct mite_request_channel(struct mite_struct *mite,
*mite, struct mite_dma_descriptor_ring *ring)
struct
mite_dma_descriptor_ring
*ring)
{ {
return mite_request_channel_in_range(mite, ring, 0, return mite_request_channel_in_range(mite, ring, 0,
mite->num_channels - 1); mite->num_channels - 1);
...@@ -285,6 +282,7 @@ enum ConfigRegister_bits { ...@@ -285,6 +282,7 @@ enum ConfigRegister_bits {
CR_PORTMXI = (3 << 6), CR_PORTMXI = (3 << 6),
CR_AMDEVICE = (1 << 0), CR_AMDEVICE = (1 << 0),
}; };
static inline int CR_REQS(int source) static inline int CR_REQS(int source)
{ {
return (source & 0x7) << 16; return (source & 0x7) << 16;
......
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