ALSA: rme32: Fix the missing snd_card_free() call at probe error
[linux-2.6-microblaze.git] / mm / dmapool.c
index 64b537b..a7eb5d0 100644 (file)
@@ -152,7 +152,7 @@ struct dma_pool *dma_pool_create(const char *name, struct device *dev,
        else if ((boundary < size) || (boundary & (boundary - 1)))
                return NULL;
 
-       retval = kmalloc_node(sizeof(*retval), GFP_KERNEL, dev_to_node(dev));
+       retval = kmalloc(sizeof(*retval), GFP_KERNEL);
        if (!retval)
                return retval;