diff options
author | Uma Krishnan <ukrishn@linux.vnet.ibm.com> | 2018-05-11 14:05:51 -0500 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2018-05-18 11:22:10 -0400 |
commit | 5e12397a9706391543e87cf088fff89fe05f0ad0 (patch) | |
tree | d403fb40fd363af4ef0d5aaaeb73bc05edff8804 /drivers/scsi/cxlflash | |
parent | e63a8d886d346e83607e4495ec21f1a0ca6398a2 (diff) | |
download | linux-5e12397a9706391543e87cf088fff89fe05f0ad0.tar.gz |
scsi: cxlflash: Add include guards to backend.h
The new header file, backend.h, that was recently added is missing the
include guards. This commit adds the guards.
Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
Acked-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/cxlflash')
-rw-r--r-- | drivers/scsi/cxlflash/backend.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/scsi/cxlflash/backend.h b/drivers/scsi/cxlflash/backend.h index bcd8a6c588d3..55638d19c2fd 100644 --- a/drivers/scsi/cxlflash/backend.h +++ b/drivers/scsi/cxlflash/backend.h @@ -12,6 +12,9 @@ * 2 of the License, or (at your option) any later version. */ +#ifndef _CXLFLASH_BACKEND_H +#define _CXLFLASH_BACKEND_H + extern const struct cxlflash_backend_ops cxlflash_cxl_ops; extern const struct cxlflash_backend_ops cxlflash_ocxl_ops; @@ -45,3 +48,5 @@ struct cxlflash_backend_ops { int (*fd_mmap)(struct file *file, struct vm_area_struct *vm); int (*fd_release)(struct inode *inode, struct file *file); }; + +#endif /* _CXLFLASH_BACKEND_H */ |