xfs: make xfs_iomap_page_ops static

Shut up the sparse warnings about this variable that isn't referenced
anywhere else.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
This commit is contained in:
Darrick J. Wong 2022-12-26 10:11:18 -08:00
parent 26870c3f5b
commit d4542f3145
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ xfs_iomap_valid(
return true;
}
const struct iomap_page_ops xfs_iomap_page_ops = {
static const struct iomap_page_ops xfs_iomap_page_ops = {
.iomap_valid = xfs_iomap_valid,
};