staging: greybus: arche-platform: Ending line with argument

Remove checkpatch check "CHECK: Lines should not end with a '('"
with argument present in next line.

Signed-off-by: Beatriz Martins de Carvalho <martinsdecarvalhobeatriz@gmail.com>
Link: https://lore.kernel.org/r/20210401090754.116522-1-martinsdecarvalhobeatriz@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Beatriz Martins de Carvalho 2021-04-01 10:07:54 +01:00 committed by Greg Kroah-Hartman
parent 305271ab4f
commit 0778f04b0b
1 changed files with 4 additions and 6 deletions

View File

@ -77,9 +77,8 @@ static void arche_platform_set_state(struct arche_platform_drvdata *arche_pdata,
} }
/* Requires arche_pdata->wake_lock is held by calling context */ /* Requires arche_pdata->wake_lock is held by calling context */
static void arche_platform_set_wake_detect_state( static void arche_platform_set_wake_detect_state(struct arche_platform_drvdata *arche_pdata,
struct arche_platform_drvdata *arche_pdata, enum svc_wakedetect_state state)
enum svc_wakedetect_state state)
{ {
arche_pdata->wake_detect_state = state; arche_pdata->wake_detect_state = state;
} }
@ -181,9 +180,8 @@ static irqreturn_t arche_platform_wd_irq(int irq, void *devid)
WD_STATE_COLDBOOT_START) { WD_STATE_COLDBOOT_START) {
arche_platform_set_wake_detect_state(arche_pdata, arche_platform_set_wake_detect_state(arche_pdata,
WD_STATE_COLDBOOT_TRIG); WD_STATE_COLDBOOT_TRIG);
spin_unlock_irqrestore( spin_unlock_irqrestore(&arche_pdata->wake_lock,
&arche_pdata->wake_lock, flags);
flags);
return IRQ_WAKE_THREAD; return IRQ_WAKE_THREAD;
} }
} }