Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5baa9e9 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman
Browse files

staging: most: rename DIM_ServiceIrq to dim_service_irq



This patch renames DIM_ServiceIrq to dim_service_irq to avoid camelcase
found by checkpatch.

CHECK: Avoid CamelCase: <DIM_ServiceIrq>
FILE: drivers/staging/most/hdm-dim2/dim2_hal.c:819:

Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a5e4d891
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -816,7 +816,7 @@ u8 dim_destroy_channel(struct dim_channel *ch)
	return DIM_NO_ERROR;
}

void DIM_ServiceIrq(struct dim_channel *const *channels)
void dim_service_irq(struct dim_channel *const *channels)
{
	bool state_changed;

+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ u8 dim_init_sync(struct dim_channel *ch, u8 is_tx, u16 ch_address,

u8 dim_destroy_channel(struct dim_channel *ch);

void DIM_ServiceIrq(struct dim_channel *const *channels);
void dim_service_irq(struct dim_channel *const *channels);

u8 DIM_ServiceChannel(struct dim_channel *ch);

+1 −1
Original line number Diff line number Diff line
@@ -452,7 +452,7 @@ static irqreturn_t dim2_ahb_isr(int irq, void *_dev)
	unsigned long flags;

	spin_lock_irqsave(&dim_lock, flags);
	DIM_ServiceIrq(get_active_channels(dev, buffer));
	dim_service_irq(get_active_channels(dev, buffer));
	spin_unlock_irqrestore(&dim_lock, flags);

#if !defined(ENABLE_HDM_TEST)