mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
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: a49d25364d
("staging/atomisp: Add support for the Intel IPU v2")
Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
This commit is contained in:
parent
9a965ff427
commit
8cd0cd065f
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@
|
|||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef _if_subsystem_defs_h
|
||||
#ifndef _if_subsystem_defs_h__
|
||||
#define _if_subsystem_defs_h__
|
||||
|
||||
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef _if_subsystem_defs_h
|
||||
#ifndef _if_subsystem_defs_h__
|
||||
#define _if_subsystem_defs_h__
|
||||
|
||||
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
* more details.
|
||||
*/
|
||||
|
||||
#ifndef _if_subsystem_defs_h
|
||||
#ifndef _if_subsystem_defs_h__
|
||||
#define _if_subsystem_defs_h__
|
||||
|
||||
#define HIVE_IFMT_GP_REGS_INPUT_SWITCH_LUT_REG_0 0
|
||||
|
|
Loading…
Reference in a new issue