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: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        return DIM_NO_ERROR;
 }
 
-void DIM_ServiceIrq(struct dim_channel *const *channels)
+void dim_service_irq(struct dim_channel *const *channels)
 {
        bool state_changed;
 
 
 
 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);
 
 
        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)