irqchip/loongson-htpic: Remove redundant kfree operation
[linux-2.6-microblaze.git] / drivers / irqchip / irq-loongson-htpic.c
index dd018c2..63f7280 100644 (file)
@@ -93,10 +93,8 @@ int __init htpic_of_init(struct device_node *node, struct device_node *parent)
        }
 
        htpic = kzalloc(sizeof(*htpic), GFP_KERNEL);
-       if (!htpic) {
-               err = -ENOMEM;
-               goto out_free;
-       }
+       if (!htpic)
+               return -ENOMEM;
 
        htpic->base = of_iomap(node, 0);
        if (!htpic->base) {