staging: most: use blank line after declarations
authorChristian Gromm <christian.gromm@microchip.com>
Wed, 21 Oct 2015 15:50:45 +0000 (17:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Oct 2015 02:08:16 +0000 (19:08 -0700)
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>
drivers/staging/most/aim-cdev/cdev.c
drivers/staging/most/hdm-usb/hdm_usb.c
drivers/staging/most/mostcore/core.c

index be81a6a57ab00b5cc7f3d856012c5a43045bd4a3..7bf4f61435c8c4f2e2dfeb8e3e4acaba3814609c 100644 (file)
@@ -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;
index c8a74bc0f26cd602be89b8c32131efe992ae382f..747d22eabf97bdad74ffa92fd8a8aee63d05c776 100644 (file)
@@ -77,6 +77,7 @@ struct buf_anchor {
        struct list_head list;
        struct completion urb_compl;
 };
+
 #define to_buf_anchor(w) container_of(w, struct buf_anchor, clear_work_obj)
 
 /**
@@ -88,6 +89,7 @@ struct most_dci_obj {
        struct kobject kobj;
        struct usb_device *usb_device;
 };
+
 #define to_dci_obj(p) container_of(p, struct most_dci_obj, kobj)
 
 /**
@@ -131,6 +133,7 @@ struct most_dev {
        struct timer_list link_stat_timer;
        struct work_struct poll_work_obj;
 };
+
 #define to_mdev(d) container_of(d, struct most_dev, iface)
 #define to_mdev_from_work(w) container_of(w, struct most_dev, poll_work_obj)
 
@@ -984,6 +987,7 @@ struct most_dci_attribute {
                         const char *buf,
                         size_t count);
 };
+
 #define to_dci_attr(a) container_of(a, struct most_dci_attribute, attr)
 
 /**
index ca0b3b27a2ed2f40fdcf733adfacf377e169a6d3..d5e05724fb16f38286e7eb067457ddba122d56b1 100644 (file)
@@ -69,6 +69,7 @@ struct most_c_obj {
        struct mutex stop_task_mutex;
        wait_queue_head_t hdm_fifo_wq;
 };
+
 #define to_c_obj(d) container_of(d, struct most_c_obj, kobj)
 
 struct most_inst_obj {
@@ -80,6 +81,7 @@ struct most_inst_obj {
        struct kobject kobj;
        struct list_head list;
 };
+
 #define to_inst_obj(d) container_of(d, struct most_inst_obj, kobj)
 
 /**
@@ -115,6 +117,7 @@ struct most_c_attr {
                         const char *buf,
                         size_t count);
 };
+
 #define to_channel_attr(a) container_of(a, struct most_c_attr, attr)
 
 #define MOST_CHNL_ATTR(_name, _mode, _show, _store) \
@@ -596,6 +599,7 @@ struct most_inst_attribute {
                         const char *buf,
                         size_t count);
 };
+
 #define to_instance_attr(a) \
        container_of(a, struct most_inst_attribute, attr)
 
@@ -777,6 +781,7 @@ struct most_aim_obj {
        char add_link[STRING_SIZE];
        char remove_link[STRING_SIZE];
 };
+
 #define to_aim_obj(d) container_of(d, struct most_aim_obj, kobj)
 
 static struct list_head aim_list;
@@ -797,6 +802,7 @@ struct most_aim_attribute {
                         const char *buf,
                         size_t count);
 };
+
 #define to_aim_attr(a) container_of(a, struct most_aim_attribute, attr)
 
 /**