]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - arch/parisc/kernel/drivers.c
[PARISC] Use kzalloc and other janitor-style cleanups
[linux-2.6-omap-h63xx.git] / arch / parisc / kernel / drivers.c
index 2d804e2d16d11f64d7482f3d78d36a65fbaf6689..3d569a485a1a6540735f282eb87879705fd4574c 100644 (file)
@@ -408,11 +408,10 @@ static void setup_bus_id(struct parisc_device *padev)
 
 struct parisc_device * create_tree_node(char id, struct device *parent)
 {
-       struct parisc_device *dev = kmalloc(sizeof(*dev), GFP_KERNEL);
+       struct parisc_device *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
        if (!dev)
                return NULL;
 
-       memset(dev, 0, sizeof(*dev));
        dev->hw_path = id;
        dev->id.hw_type = HPHW_FAULTY;