From 37d2f533d03464b8e8cfe7d9d5be6a295d5a97b9 Mon Sep 17 00:00:00 2001 From: ajesh Date: Fri, 31 Jan 2020 12:52:06 +0530 Subject: [PATCH] gpu: nvgpu: update the header guard for file_ops Update the header guard as per the guidelines for file_ops unit. Jira NVGPU-4910 Change-Id: Ia8ab30fcb76a3bd837ddad891581977d8390f321 Signed-off-by: ajesh Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2288068 Tested-by: mobile promotions Reviewed-by: Prateek Sethi Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Vijayakumar Subbu Reviewed-by: mobile promotions GVS: Gerrit_Virtual_Submit --- drivers/gpu/nvgpu/include/nvgpu/posix/file_ops.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/nvgpu/include/nvgpu/posix/file_ops.h b/drivers/gpu/nvgpu/include/nvgpu/posix/file_ops.h index 96bdba8e3..f49237316 100644 --- a/drivers/gpu/nvgpu/include/nvgpu/posix/file_ops.h +++ b/drivers/gpu/nvgpu/include/nvgpu/posix/file_ops.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved. + * Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -20,8 +20,8 @@ * DEALINGS IN THE SOFTWARE. */ -#ifndef NVGPU_FILE_OPS_H -#define NVGPU_FILE_OPS_H +#ifndef NVGPU_POSIX_FILE_OPS_H +#define NVGPU_POSIX_FILE_OPS_H #include #include @@ -74,5 +74,5 @@ ssize_t nvgpu_fread(int fildes, void* buf, size_t nbytes); * The function closes the file specified by the file descriptor \a fd. */ void nvgpu_close(int fd); -#endif /* NVGPU_FILE_OPS_H */ +#endif /* NVGPU_POSIX_FILE_OPS_H */