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: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
65f6fac914
commit
f2348c7369
@ -77,16 +77,13 @@ static inline int mite_setup(struct comedi_device *dev,
|
||||
void mite_detach(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);
|
||||
struct mite_channel *mite_request_channel_in_range(struct mite_struct *mite,
|
||||
struct
|
||||
mite_dma_descriptor_ring
|
||||
*ring, unsigned min_channel,
|
||||
unsigned max_channel);
|
||||
static inline struct mite_channel *mite_request_channel(struct mite_struct
|
||||
*mite,
|
||||
struct
|
||||
mite_dma_descriptor_ring
|
||||
*ring)
|
||||
struct mite_channel *
|
||||
mite_request_channel_in_range(struct mite_struct *mite,
|
||||
struct mite_dma_descriptor_ring *ring,
|
||||
unsigned min_channel, unsigned max_channel);
|
||||
static inline struct mite_channel *
|
||||
mite_request_channel(struct mite_struct *mite,
|
||||
struct mite_dma_descriptor_ring *ring)
|
||||
{
|
||||
return mite_request_channel_in_range(mite, ring, 0,
|
||||
mite->num_channels - 1);
|
||||
@ -285,6 +282,7 @@ enum ConfigRegister_bits {
|
||||
CR_PORTMXI = (3 << 6),
|
||||
CR_AMDEVICE = (1 << 0),
|
||||
};
|
||||
|
||||
static inline int CR_REQS(int source)
|
||||
{
|
||||
return (source & 0x7) << 16;
|
||||
|
Loading…
Reference in New Issue
Block a user