diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2015-10-21 17:50:45 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-10-24 19:08:16 -0700 |
commit | 9cbe5aa65d5d4e90c8bb661d021b50131eb963c6 (patch) | |
tree | 89853e2a06342c0020abc8ddaed13c963778a28e /drivers/staging/most/aim-cdev | |
parent | 9deba73de56ce5782ca46460b1ca5a5de82439c1 (diff) | |
download | linux-9cbe5aa65d5d4e90c8bb661d021b50131eb963c6.tar.gz linux-9cbe5aa65d5d4e90c8bb661d021b50131eb963c6.tar.bz2 linux-9cbe5aa65d5d4e90c8bb661d021b50131eb963c6.zip |
staging: most: use blank line after declarations
This patch fixes style violation regarding blank lines after
function/struct/union/enum declarations.
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/aim-cdev')
-rw-r--r-- | drivers/staging/most/aim-cdev/cdev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/most/aim-cdev/cdev.c b/drivers/staging/most/aim-cdev/cdev.c index be81a6a57ab0..7bf4f61435c8 100644 --- a/drivers/staging/most/aim-cdev/cdev.c +++ b/drivers/staging/most/aim-cdev/cdev.c @@ -47,6 +47,7 @@ struct aim_channel { atomic_t access_ref; struct list_head list; }; + #define to_channel(d) container_of(d, struct aim_channel, cdev) static struct list_head channel_list; static spinlock_t ch_list_lock; |