Skip to content

Commit 8cd0cd0

Browse files
fishilicomchehab
authored andcommitted
media: staging/atomisp: fix header guards
Files input_formatter_subsystem_defs.h begin with: #ifndef _if_subsystem_defs_h #define _if_subsystem_defs_h__ and end with: #endif /* _if_subsystem_defs_h__ */ The intent seems to have been to use _if_subsystem_defs_h__ everywhere but two underscores are missing in the initial #ifndef. Fixes: a49d253 ("staging/atomisp: Add support for the Intel IPU v2") Signed-off-by: Nicolas Iooss <[email protected]> Signed-off-by: Sakari Ailus <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 9a965ff commit 8cd0cd0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2400_system/hrt/input_formatter_subsystem_defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* more details.
1313
*/
1414

15-
#ifndef _if_subsystem_defs_h
15+
#ifndef _if_subsystem_defs_h__
1616
#define _if_subsystem_defs_h__
1717

1818
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0

drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_csi2p_system/hrt/input_formatter_subsystem_defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* more details.
1313
*/
1414

15-
#ifndef _if_subsystem_defs_h
15+
#ifndef _if_subsystem_defs_h__
1616
#define _if_subsystem_defs_h__
1717

1818
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0

drivers/staging/media/atomisp/pci/atomisp2/css2400/css_2401_system/hrt/input_formatter_subsystem_defs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* more details.
1313
*/
1414

15-
#ifndef _if_subsystem_defs_h
15+
#ifndef _if_subsystem_defs_h__
1616
#define _if_subsystem_defs_h__
1717

1818
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0

0 commit comments

Comments
 (0)