mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 09:36:22 +02:00
drm/xe: Add missing trailing underscore to include guards
Four headers use _XE_<NAME>_H (no trailing underscore) as their include guard. Normalize them to _XE_<NAME>_H_ to match the dominant convention used across the xe codebase. Files fixed: - xe_guc_capture.h: _XE_GUC_CAPTURE_H -> _XE_GUC_CAPTURE_H_ - xe_guc_capture_types.h: _XE_GUC_CAPTURE_TYPES_H -> _XE_GUC_CAPTURE_TYPES_H_ - xe_guc_fwif.h: _XE_GUC_FWIF_H -> _XE_GUC_FWIF_H_ - xe_uc_fw_abi.h: _XE_UC_FW_ABI_H -> _XE_UC_FW_ABI_H_ No functional change. Suggested-by: Nitin Gote <nitin.r.gote@intel.com> Assisted-by: GitHub Copilot:claude-opus-4.6 Reviewed-by: Nitin Gote <nitin.r.gote@intel.com> Link: https://patch.msgid.link/20260317215732.2208976-10-shuicheng.lin@intel.com Signed-off-by: Shuicheng Lin <shuicheng.lin@intel.com>
This commit is contained in:
parent
d45c7454ee
commit
b85ff232d2
|
|
@ -3,8 +3,8 @@
|
|||
* Copyright © 2021-2024 Intel Corporation
|
||||
*/
|
||||
|
||||
#ifndef _XE_GUC_CAPTURE_H
|
||||
#define _XE_GUC_CAPTURE_H
|
||||
#ifndef _XE_GUC_CAPTURE_H_
|
||||
#define _XE_GUC_CAPTURE_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
#include "abi/guc_capture_abi.h"
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
* Copyright © 2021-2024 Intel Corporation
|
||||
*/
|
||||
|
||||
#ifndef _XE_GUC_CAPTURE_TYPES_H
|
||||
#define _XE_GUC_CAPTURE_TYPES_H
|
||||
#ifndef _XE_GUC_CAPTURE_TYPES_H_
|
||||
#define _XE_GUC_CAPTURE_TYPES_H_
|
||||
|
||||
#include <linux/types.h>
|
||||
#include "regs/xe_reg_defs.h"
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
* Copyright © 2022 Intel Corporation
|
||||
*/
|
||||
|
||||
#ifndef _XE_GUC_FWIF_H
|
||||
#define _XE_GUC_FWIF_H
|
||||
#ifndef _XE_GUC_FWIF_H_
|
||||
#define _XE_GUC_FWIF_H_
|
||||
|
||||
#include <linux/bits.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
* Copyright © 2022 Intel Corporation
|
||||
*/
|
||||
|
||||
#ifndef _XE_UC_FW_ABI_H
|
||||
#define _XE_UC_FW_ABI_H
|
||||
#ifndef _XE_UC_FW_ABI_H_
|
||||
#define _XE_UC_FW_ABI_H_
|
||||
|
||||
#include <linux/build_bug.h>
|
||||
#include <linux/types.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user