s390/hypfs_sprp: remove unneeded DMA zone allocation
[sfrench/cifs-2.6.git] / arch / s390 / hypfs / hypfs_sprp.c
index e66b4de8913f07ea67ba54993a25e2f757c2439d..9fc3f0dae8f0a24a724320c411ae543e64cdda52 100644 (file)
@@ -74,7 +74,7 @@ static int __hypfs_sprp_ioctl(void __user *user_area)
        int rc;
 
        rc = -ENOMEM;
-       data = (void *) get_zeroed_page(GFP_KERNEL | GFP_DMA);
+       data = (void *)get_zeroed_page(GFP_KERNEL);
        diag304 = kzalloc(sizeof(*diag304), GFP_KERNEL);
        if (!data || !diag304)
                goto out;