From patchwork Wed Jan 2 09:13:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 13760 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 31F8B23EDD for ; Wed, 2 Jan 2013 09:22:04 +0000 (UTC) Received: from mail-vc0-f171.google.com (mail-vc0-f171.google.com [209.85.220.171]) by fiordland.canonical.com (Postfix) with ESMTP id C4B1EA18653 for ; Wed, 2 Jan 2013 09:22:03 +0000 (UTC) Received: by mail-vc0-f171.google.com with SMTP id n11so13923383vch.16 for ; Wed, 02 Jan 2013 01:22:03 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=tUMPwFy28n1T9JtXpR5Qxaj0iCiyO4c1PPbOjMxZTYc=; b=fa0nUvMVzULU+VaY1pmRo7mdiovgsonL7aFJ3G9TeSYu5a/IADR7wgOb09Y9H9Katv FuiHP2rbE2pQBHWjgjgfpWAO+VPV+mmSloep1vUOOIMvlCtiocNi5QG9kMf1IBtlTHks O8ZDEXIRC/rRXiD4UcIznPf8MOmx12ExRh8svQSufV9AxdWXNQeuBf3hQEFSFq4WNrUB 3lMrgrLOQKr4bTCsFQt4X7ydsoHKCgUMx0UzCEVDEpzcjwhcnYIGubQSOECh89Vg31IR nW8w3KP/iBxxv5SBsT8PhyETTpGhzJPoUebGyR1mQPFN7iHN+IZvWp/Jz2OBAoXRiYsL KP1Q== X-Received: by 10.52.70.205 with SMTP id o13mr61123558vdu.75.1357118523172; Wed, 02 Jan 2013 01:22:03 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.145.101 with SMTP id st5csp37977veb; Wed, 2 Jan 2013 01:22:02 -0800 (PST) X-Received: by 10.66.83.6 with SMTP id m6mr135067472pay.52.1357118521930; Wed, 02 Jan 2013 01:22:01 -0800 (PST) Received: from mail-pa0-f53.google.com (mail-pa0-f53.google.com [209.85.220.53]) by mx.google.com with ESMTPS id wn5si43865218pbc.136.2013.01.02.01.22.01 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 Jan 2013 01:22:01 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.53 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.53; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.53 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f53.google.com with SMTP id hz1so7855697pad.26 for ; Wed, 02 Jan 2013 01:22:01 -0800 (PST) X-Received: by 10.68.230.103 with SMTP id sx7mr142844520pbc.19.1357118521337; Wed, 02 Jan 2013 01:22:01 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id wg3sm28136000pbc.28.2013.01.02.01.21.58 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 Jan 2013 01:22:00 -0800 (PST) From: Sachin Kamat To: linux-media@vger.kernel.org Cc: k.debski@samsung.com, s.nawrocki@samsung.com, sylvester.nawrocki@gmail.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH-Trivial] [media] s5p-mfc: Fix a typo in error message in s5p_mfc_pm.c Date: Wed, 2 Jan 2013 14:43:33 +0530 Message-Id: <1357118013-20967-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQkJJGNocXOTJPjI1ZeEvbcTj4j58rih0pUbg01fIAet8mMPpk1OvsqXN2QjLF9IKKXOGuw6 Fixed a trivial typo. Signed-off-by: Sachin Kamat --- drivers/media/platform/s5p-mfc/s5p_mfc_pm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/media/platform/s5p-mfc/s5p_mfc_pm.c b/drivers/media/platform/s5p-mfc/s5p_mfc_pm.c index 2895333..6aa38a5 100644 --- a/drivers/media/platform/s5p-mfc/s5p_mfc_pm.c +++ b/drivers/media/platform/s5p-mfc/s5p_mfc_pm.c @@ -46,7 +46,7 @@ int s5p_mfc_init_pm(struct s5p_mfc_dev *dev) ret = clk_prepare(pm->clock_gate); if (ret) { - mfc_err("Failed to preapre clock-gating control\n"); + mfc_err("Failed to prepare clock-gating control\n"); goto err_p_ip_clk; }