diff options
author | Nicolas Saenz Julienne <nsaenzjulienne@suse.de> | 2020-05-27 13:53:13 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-05-27 14:03:37 +0200 |
commit | 8d24d19e35f9bddd1fd01d4fb5940ae1efaab1bd (patch) | |
tree | 8092c5797a8c1add122ad1083abf38c1b00c543e /drivers/staging | |
parent | b6d90ef9a439b4ef73a350789bf766a1339a703d (diff) |
staging: vchi: Get rid of C++ guards
This is an include only used by the Linux kernel, so no need to worry
about C++ compatibility.
Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Link: https://lore.kernel.org/r/20200527115400.31391-9-nsaenzjulienne@suse.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/vc04_services/interface/vchi/vchi.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/staging/vc04_services/interface/vchi/vchi.h b/drivers/staging/vc04_services/interface/vchi/vchi.h index 2e41b5f7bdec..1a981e98e82b 100644 --- a/drivers/staging/vc04_services/interface/vchi/vchi.h +++ b/drivers/staging/vc04_services/interface/vchi/vchi.h @@ -60,10 +60,6 @@ struct vchi_service_handle; * (local / remote) *****************************************************************************/ -#ifdef __cplusplus -extern "C" { -#endif - // Routine used to initialise the vchi on both local + remote connections extern int32_t vchi_initialise(struct vchi_instance_handle **instance_handle); @@ -158,10 +154,6 @@ extern int32_t vchi_bulk_queue_transmit(struct vchi_service_handle *handle, * Configuration plumbing *****************************************************************************/ -#ifdef __cplusplus -} -#endif - #endif /* VCHI_H_ */ /****************************** End of file **********************************/ |