[PATCH] getting rid of all casts of k[cmz]alloc() calls
[deliverable/linux.git] / drivers / cdrom / cm206.c
index e6d8e9ededeaeb57e562e84ad5987f89c8262f0c..b6c61bbb20e135adbba310b0d4f7cb5ea54d41d8 100644 (file)
@@ -1420,7 +1420,7 @@ int __init cm206_init(void)
                return -EIO;
        }
        printk(" adapter at 0x%x", cm206_base);
-       cd = (struct cm206_struct *) kmalloc(size, GFP_KERNEL);
+       cd = kmalloc(size, GFP_KERNEL);
        if (!cd)
                goto out_base;
        /* Now we have found the adaptor card, try to reset it. As we have
This page took 0.027697 seconds and 5 git commands to generate.