]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
sysfs: add unsigned long cast to prevent compile warning
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Thu, 22 Sep 2011 17:34:33 +0000 (19:34 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 26 Sep 2011 23:21:15 +0000 (16:21 -0700)
commitc4253cb0748cd50060d04d838c38b07f1ad0e6e5
treed6a1e256622a8cb48ff093e5fc7351ce76749262
parentbcbe4f94d15ae1c985336bb3c35605e595fdde0d
sysfs: add unsigned long cast to prevent compile warning

"sysfs: use rb-tree for inode number lookup" added a new printk which
causes a new compile warning on s390 (and few other architectures):

fs/sysfs/dir.c: In function 'sysfs_link_sibling':
fs/sysfs/dir.c:63:4: warning: format '%lx' expects argument of type
  'long unsigned int', but argument 2 has type 'ino_t' [-Wform

Add an explicit unsigned long cast since ino_t is an unsigned long on
most architectures.

Cc: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/sysfs/dir.c