summaryrefslogtreecommitdiffstats
path: root/drivers/staging/most/hdm-dim2
diff options
context:
space:
mode:
authorJoe Perches2015-08-10 23:51:22 +0200
committerGreg Kroah-Hartman2015-08-15 02:33:23 +0200
commitddb98ce16158cb979f025eb73eaa44dce4cb1b36 (patch)
treee8b1775fe4ba6eaad905eec728e963cce3a0abeb /drivers/staging/most/hdm-dim2
parentstaging/most: fix return value for DIM_GetChannelState (diff)
downloadkernel-qcow2-linux-ddb98ce16158cb979f025eb73eaa44dce4cb1b36.tar.gz
kernel-qcow2-linux-ddb98ce16158cb979f025eb73eaa44dce4cb1b36.tar.xz
kernel-qcow2-linux-ddb98ce16158cb979f025eb73eaa44dce4cb1b36.zip
staging: most: Remove unnecessary externs
Using 'extern' is not necessary for function prototypes. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/most/hdm-dim2')
-rw-r--r--drivers/staging/most/hdm-dim2/dim2_hal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/most/hdm-dim2/dim2_hal.h b/drivers/staging/most/hdm-dim2/dim2_hal.h
index d88b5a0e3244..8929af9712ef 100644
--- a/drivers/staging/most/hdm-dim2/dim2_hal.h
+++ b/drivers/staging/most/hdm-dim2/dim2_hal.h
@@ -108,13 +108,13 @@ bool DIM_DetachBuffers(struct dim_channel *ch, u16 buffers_number);
u32 DIM_ReadRegister(u8 register_index);
-extern u32 DIMCB_IoRead(u32 *ptr32);
+u32 DIMCB_IoRead(u32 *ptr32);
-extern void DIMCB_IoWrite(u32 *ptr32, u32 value);
+void DIMCB_IoWrite(u32 *ptr32, u32 value);
-extern void DIMCB_OnError(u8 error_id, const char *error_message);
+void DIMCB_OnError(u8 error_id, const char *error_message);
-extern void DIMCB_OnFail(const char *filename, int linenum);
+void DIMCB_OnFail(const char *filename, int linenum);
#ifdef __cplusplus