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 <akv@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2288068
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Reviewed-by: Prateek Sethi <prsethi@nvidia.com>
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
GVS: Gerrit_Virtual_Submit
This commit is contained in:
ajesh
2020-01-31 12:52:06 +05:30
committed by Alex Waterman
parent 57f3968cb9
commit 37d2f533d0

View File

@@ -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 <sys/types.h>
#include <sys/stat.h>
@@ -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 */