acd = kzalloc(sizeof(*acd), GFP_KERNEL);
        if (!acd) {
-               dev_err(&priv->ldev->pldev->dev, "Couldn't kmalloc space for for the aio data\n");
+               dev_err(&priv->ldev->pldev->dev, "Couldn't kmalloc space for the aio data\n");
                return -ENOMEM;
        }
        memset(acd, 0x66, sizeof(struct aio_cb_data));
        acd->user_pages = kcalloc(acd->page_count, sizeof(struct page *),
                                  GFP_KERNEL);
        if (!acd->user_pages) {
-               dev_err(&priv->ldev->pldev->dev, "Couldn't kmalloc space for for the page pointers\n");
+               dev_err(&priv->ldev->pldev->dev, "Couldn't kmalloc space for the page pointers\n");
                rv = -ENOMEM;
                goto err_alloc_userpages;
        }