iio: trigger: Add a blank line after declarations
This patch fixes the following checkpatch.pl warning: WARNING: Missing a blank line after declarations Signed-off-by: Roberta Dobrescu <roberta.dobrescu@gmail.com> Reviewed-by: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
60347e71c0
commit
450a5ff768
1 changed files with 2 additions and 0 deletions
|
@ -135,6 +135,7 @@ static int iio_sysfs_trigger_probe(int id)
|
||||||
struct iio_sysfs_trig *t;
|
struct iio_sysfs_trig *t;
|
||||||
int ret;
|
int ret;
|
||||||
bool foundit = false;
|
bool foundit = false;
|
||||||
|
|
||||||
mutex_lock(&iio_sysfs_trig_list_mut);
|
mutex_lock(&iio_sysfs_trig_list_mut);
|
||||||
list_for_each_entry(t, &iio_sysfs_trig_list, l)
|
list_for_each_entry(t, &iio_sysfs_trig_list, l)
|
||||||
if (id == t->id) {
|
if (id == t->id) {
|
||||||
|
@ -185,6 +186,7 @@ static int iio_sysfs_trigger_remove(int id)
|
||||||
{
|
{
|
||||||
bool foundit = false;
|
bool foundit = false;
|
||||||
struct iio_sysfs_trig *t;
|
struct iio_sysfs_trig *t;
|
||||||
|
|
||||||
mutex_lock(&iio_sysfs_trig_list_mut);
|
mutex_lock(&iio_sysfs_trig_list_mut);
|
||||||
list_for_each_entry(t, &iio_sysfs_trig_list, l)
|
list_for_each_entry(t, &iio_sysfs_trig_list, l)
|
||||||
if (id == t->id) {
|
if (id == t->id) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue