]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/patches/suse-2.6.27.31/patches.fixes/ia64-sparse-fixes.diff
Revert "Move xen patchset to new version's subdir."
[people/pmueller/ipfire-2.x.git] / src / patches / suse-2.6.27.31 / patches.fixes / ia64-sparse-fixes.diff
diff --git a/src/patches/suse-2.6.27.31/patches.fixes/ia64-sparse-fixes.diff b/src/patches/suse-2.6.27.31/patches.fixes/ia64-sparse-fixes.diff
deleted file mode 100644 (file)
index c923fc0..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-From: Jan Blunck <jblunck@suse.de>
-Subject: ia64-kvm: fix sparse warnings
-
-This patch fixes some sparse warning about dubious one-bit signed bitfield.
-
-Signed-off-by: Jan Blunck <jblunck@suse.de>
----
- arch/ia64/kvm/vti.h |   26 +++++++++++++-------------
- 1 file changed, 13 insertions(+), 13 deletions(-)
-
-Index: b/arch/ia64/kvm/vti.h
-===================================================================
---- a/arch/ia64/kvm/vti.h
-+++ b/arch/ia64/kvm/vti.h
-@@ -83,13 +83,13 @@
- union vac {
-       unsigned long value;
-       struct {
--              int a_int:1;
--              int a_from_int_cr:1;
--              int a_to_int_cr:1;
--              int a_from_psr:1;
--              int a_from_cpuid:1;
--              int a_cover:1;
--              int a_bsw:1;
-+              unsigned int a_int:1;
-+              unsigned int a_from_int_cr:1;
-+              unsigned int a_to_int_cr:1;
-+              unsigned int a_from_psr:1;
-+              unsigned int a_from_cpuid:1;
-+              unsigned int a_cover:1;
-+              unsigned int a_bsw:1;
-               long reserved:57;
-       };
- };
-@@ -97,12 +97,12 @@ union vac {
- union vdc {
-       unsigned long value;
-       struct {
--              int d_vmsw:1;
--              int d_extint:1;
--              int d_ibr_dbr:1;
--              int d_pmc:1;
--              int d_to_pmd:1;
--              int d_itm:1;
-+              unsigned int d_vmsw:1;
-+              unsigned int d_extint:1;
-+              unsigned int d_ibr_dbr:1;
-+              unsigned int d_pmc:1;
-+              unsigned int d_to_pmd:1;
-+              unsigned int d_itm:1;
-               long reserved:58;
-       };
- };