Trivial fix to spelling mistake in error message text.  Also remove the
error message on an kzalloc failure as this is redundant.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
        /* asking for the data path parameters */
        wl->data_path = kzalloc(sizeof(struct acx_data_path_params_resp),
                                GFP_KERNEL);
-       if (!wl->data_path) {
-               wl1251_error("Couldnt allocate data path parameters");
+       if (!wl->data_path)
                return -ENOMEM;
-       }
 
        ret = wl1251_acx_data_path_params(wl, wl->data_path);
        if (ret < 0) {
 
        ret = wl1271_cmd_configure(wl, ACX_FEATURE_CFG,
                                   feature, sizeof(*feature));
        if (ret < 0) {
-               wl1271_error("Couldnt set HW encryption");
+               wl1271_error("Couldn't set HW encryption");
                goto out;
        }