projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
925afbd
)
[S390] hypfs sparse warnings.
author
Michael Holzheu
<holzheu@de.ibm.com>
Thu, 28 Sep 2006 14:55:28 +0000
(16:55 +0200)
committer
Martin Schwidefsky
<schwidefsky@de.ibm.com>
Thu, 28 Sep 2006 14:55:28 +0000
(16:55 +0200)
sparse complains, if we use bitwise operations on enums. Cast enum to
long in order to fix that problem!
Signed-off-by: Michael Holzheu <holzheu@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/hypfs/hypfs_diag.c
patch
|
blob
|
history
diff --git
a/arch/s390/hypfs/hypfs_diag.c
b/arch/s390/hypfs/hypfs_diag.c
index 75144efbb92b647cd8ce83487d5bf3a2a7fd238b..684384f2b36437ec613022611686d81933fc5709 100644
(file)
--- a/
arch/s390/hypfs/hypfs_diag.c
+++ b/
arch/s390/hypfs/hypfs_diag.c
@@
-403,7
+403,8
@@
static void *diag204_get_buffer(enum diag204_format fmt, int *pages)
*pages = 1;
return diag204_alloc_rbuf();
} else {/* INFO_EXT */
- *pages = diag204(SUBC_RSI | INFO_EXT, 0, NULL);
+ *pages = diag204((unsigned long)SUBC_RSI |
+ (unsigned long)INFO_EXT, 0, NULL);
if (*pages <= 0)
return ERR_PTR(-ENOSYS);
else