From patchwork Thu May 21 17:56:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shailendra Verma X-Patchwork-Id: 6458091 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 0D8379F318 for ; Thu, 21 May 2015 17:56:21 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4F36C20524 for ; Thu, 21 May 2015 17:56:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 682672051D for ; Thu, 21 May 2015 17:56:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755833AbbEUR4S (ORCPT ); Thu, 21 May 2015 13:56:18 -0400 Received: from mail-pd0-f173.google.com ([209.85.192.173]:33933 "EHLO mail-pd0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755710AbbEUR4R (ORCPT ); Thu, 21 May 2015 13:56:17 -0400 Received: by pdbnk13 with SMTP id nk13so115813028pdb.1; Thu, 21 May 2015 10:56:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=yIB30M5TEfq+OxyQvJbU8Oe29CDjhHNEbs9oBOdrXZo=; b=ZZFv1m4yxyFU/ga1khfu9FdYKiwmI5hLfOpltY8qcJN5IFtIc/M52ha79NqQmk9PxZ nkEUQe9C3xfwalgtkiDVns4Q2XjP7aSV18cP85dEDvUz+z4H0bkvgUbUk2/tarYU5zp4 vnhwOtI3nGOz8FIlFOs6aqcj/5tY1HLoXlD1w//J7PLc0zK843m1VKF8FFLN2tQ6OocN CJrEjO8bJM+uCgtn+2WtasB5uJ8p/k07/9Gtzo1jRzfNqAgU8Is8aXSNF03WqNDEAPre vl4pzUg9LlixntuzK17qX7fVVn1fLUAKe9BHm0hbCRzGv+kHstOSDSe9/+x++zf1nVfB rP1A== X-Received: by 10.66.163.38 with SMTP id yf6mr7746678pab.115.1432230977044; Thu, 21 May 2015 10:56:17 -0700 (PDT) Received: from localhost.localdomain ([112.196.170.135]) by mx.google.com with ESMTPSA id we8sm19997552pac.44.2015.05.21.10.56.13 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 21 May 2015 10:56:16 -0700 (PDT) From: Shailendra Verma To: Sylwester Nawrocki , Tomasz Figa , Mike Turquette , Stephen Boyd , linux-samsung-soc@vger.kernel.org, linux-clk@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Shailendra Verma Subject: [PATCH] clk:samsung:clk - Fix typo in panic log. Date: Thu, 21 May 2015 23:26:03 +0530 Message-Id: <1432230963-3355-1-git-send-email-shailendra.capricorn@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Signed-off-by: Shailendra Verma --- drivers/clk/samsung/clk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/samsung/clk.c b/drivers/clk/samsung/clk.c index 9e1f88c..7649162 100644 --- a/drivers/clk/samsung/clk.c +++ b/drivers/clk/samsung/clk.c @@ -389,7 +389,7 @@ struct samsung_clk_provider * __init samsung_cmu_register_one( ctx = samsung_clk_init(np, reg_base, cmu->nr_clk_ids); if (!ctx) { - panic("%s: unable to alllocate ctx\n", __func__); + panic("%s: unable to allocate ctx\n", __func__); return ctx; }