]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - drivers/char/mbcs.c
tty: handle VT specific compat ioctls in vt driver
[mv-sheeva.git] / drivers / char / mbcs.c
index acd8e9ed474ae74e6b53fd58539ec3efaf5f2b26..87c67b42bc08b03a17aaf410705f8c3e6e2d3638 100644 (file)
@@ -15,6 +15,7 @@
 #include <linux/moduleparam.h>
 #include <linux/types.h>
 #include <linux/ioport.h>
+#include <linux/kernel.h>
 #include <linux/notifier.h>
 #include <linux/reboot.h>
 #include <linux/init.h>
@@ -715,8 +716,8 @@ static ssize_t show_algo(struct device *dev, struct device_attribute *attr, char
         */
        debug0 = *(uint64_t *) soft->debug_addr;
 
-       return sprintf(buf, "0x%lx 0x%lx\n",
-                      (debug0 >> 32), (debug0 & 0xffffffff));
+       return sprintf(buf, "0x%x 0x%x\n",
+                      upper_32_bits(debug0), lower_32_bits(debug0));
 }
 
 static ssize_t store_algo(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)