From 84d7238f937f11eced99b37f963b17dc03bfe1bc Mon Sep 17 00:00:00 2001 From: Elizabeth Ferdman Date: Mon, 3 Oct 2016 16:53:06 -0700 Subject: [PATCH] staging: lustre: use 'unsigned int' not unsigned Use unsigned int rather than unsigned in header variable declaration for readability. Error found by checkpatch. Signed-off-by: Elizabeth Ferdman Signed-off-by: Greg Kroah-Hartman --- drivers/staging/lustre/lustre/lov/lov_cl_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/lustre/lustre/lov/lov_cl_internal.h b/drivers/staging/lustre/lustre/lov/lov_cl_internal.h index 2b03938..a08e41d 100644 --- a/drivers/staging/lustre/lustre/lov/lov_cl_internal.h +++ b/drivers/staging/lustre/lustre/lov/lov_cl_internal.h @@ -217,7 +217,7 @@ struct lov_object { union lov_layout_state { struct lov_layout_raid0 { - unsigned lo_nr; + unsigned int lo_nr; /** * When this is true, lov_object::lo_attr contains * valid up to date attributes for a top-level -- 2.7.4