From: Al Viro Date: Sat, 19 May 2012 14:16:30 +0000 (-0400) Subject: powerpc: get rid of nlink_t uses, switch to explicitly-sized type X-Git-Tag: firefly_0821_release~3680^2~2693^2~55 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e57f93cc53b7;p=firefly-linux-kernel-4.4.55.git powerpc: get rid of nlink_t uses, switch to explicitly-sized type Signed-off-by: Al Viro --- diff --git a/arch/powerpc/include/asm/stat.h b/arch/powerpc/include/asm/stat.h index e4edc510b530..10cfb558e0fd 100644 --- a/arch/powerpc/include/asm/stat.h +++ b/arch/powerpc/include/asm/stat.h @@ -30,11 +30,11 @@ struct stat { unsigned long st_dev; ino_t st_ino; #ifdef __powerpc64__ - nlink_t st_nlink; + unsigned short st_nlink; mode_t st_mode; #else mode_t st_mode; - nlink_t st_nlink; + unsigned short st_nlink; #endif uid_t st_uid; gid_t st_gid;