aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/echo/fir.h
diff options
context:
space:
mode:
authorPekka Enberg <penberg@cs.helsinki.fi>2008-10-17 20:56:00 +0300
committerGreg Kroah-Hartman <gregkh@suse.de>2008-10-22 09:56:35 -0700
commit6675fe3f92ad3b433e55744ef96d775b4875997e (patch)
tree18a442789ccfd6338488487e3226356c10b222e3 /drivers/staging/echo/fir.h
parentf07639adebd573709ea0d6b67bec9b620fe3083e (diff)
Staging: echo: remove __cplusplus macro magic
The kernel is written in C, so remove the __cplusplus macro magic from the driver. Cc: David Rowe <david@rowetel.com> Cc: Steve Underwood <steveu@coppice.org> Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/echo/fir.h')
-rw-r--r--drivers/staging/echo/fir.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/echo/fir.h b/drivers/staging/echo/fir.h
index 19c20cde186b..d1df33cf2aa5 100644
--- a/drivers/staging/echo/fir.h
+++ b/drivers/staging/echo/fir.h
@@ -105,10 +105,6 @@ typedef struct
float *history;
} fir_float_state_t;
-#ifdef __cplusplus
-extern "C" {
-#endif
-
static __inline__ const int16_t *fir16_create(fir16_state_t *fir,
const int16_t *coeffs,
int taps)
@@ -312,9 +308,5 @@ static __inline__ int16_t fir32(fir32_state_t *fir, int16_t sample)
}
/*- End of function --------------------------------------------------------*/
-#ifdef __cplusplus
-}
-#endif
-
#endif
/*- End of file ------------------------------------------------------------*/