From patchwork Sat May 3 05:07:57 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chen Gang X-Patchwork-Id: 345294 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail-ve0-f188.google.com (mail-ve0-f188.google.com [209.85.128.188]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 2AA53140131 for ; Sat, 3 May 2014 15:08:08 +1000 (EST) Received: by mail-ve0-f188.google.com with SMTP id oy12sf637331veb.25 for ; Fri, 02 May 2014 22:08:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlegroups.com; s=20120806; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:x-original-sender :x-original-authentication-results:reply-to:precedence:mailing-list :list-id:list-post:list-help:list-archive:sender:list-subscribe :list-unsubscribe:content-type; bh=cdm4sPUJmQgclVOEd9kApFZtOhlYAyVlm8iFLLQQQAc=; b=s0wFBnYG/UOLinnzDdZflKMqP240DvXt/LEcmIKfgEopEl7OcvVtoTQlJTvpVA5Pnm cgKSiuYKVgJeMp5CtC9alRLiVEf/uftx8U3AonZb8dg96QTpeNwIcH5Mu0UPKhS5ozjq QBzB2cm6fCwS2bQengvBAusYEOIuHwnUTmjuhz9kpkPc9LMQdcuvDu1uMmjitfLhEjSH /Zxn9KltMCDl95S/DancCPHLBYvh/dj3DNG90MhNAYQ1v080CbEfQcDgaHdcxqR6fHdg K0R1tDFzlqRVY3qumpupwEea7uhUNDPSgANxNpl0XtGal0KFQhcCXZGa5u6ZM9Mc6gc4 mjCA== X-Received: by 10.50.8.1 with SMTP id n1mr170885iga.5.1399093685747; Fri, 02 May 2014 22:08:05 -0700 (PDT) X-BeenThere: rtc-linux@googlegroups.com Received: by 10.50.148.69 with SMTP id tq5ls526832igb.36.canary; Fri, 02 May 2014 22:08:05 -0700 (PDT) X-Received: by 10.66.163.33 with SMTP id yf1mr11678135pab.19.1399093685342; Fri, 02 May 2014 22:08:05 -0700 (PDT) Received: from mail-pa0-x232.google.com (mail-pa0-x232.google.com [2607:f8b0:400e:c03::232]) by gmr-mx.google.com with ESMTPS id bu7si386097pad.0.2014.05.02.22.08.05 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 02 May 2014 22:08:05 -0700 (PDT) Received-SPF: pass (google.com: domain of gang.chen.5i5j@gmail.com designates 2607:f8b0:400e:c03::232 as permitted sender) client-ip=2607:f8b0:400e:c03::232; Received: by mail-pa0-f50.google.com with SMTP id rd3so6473983pab.37 for ; Fri, 02 May 2014 22:08:05 -0700 (PDT) X-Received: by 10.66.122.72 with SMTP id lq8mr43260526pab.69.1399093685096; Fri, 02 May 2014 22:08:05 -0700 (PDT) Received: from [192.168.1.129] ([124.126.233.132]) by mx.google.com with ESMTPSA id nw13sm8838819pab.37.2014.05.02.22.08.00 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 02 May 2014 22:08:04 -0700 (PDT) Message-ID: <536479AD.9040104@gmail.com> Date: Sat, 03 May 2014 13:07:57 +0800 From: Chen Gang User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.4.0 MIME-Version: 1.0 To: Guan Xuetao , a.zummo@towertech.it, sangjung.woo@samsung.com CC: rtc-linux@googlegroups.com, "linux-kernel@vger.kernel.org" Subject: [rtc-linux] [PATCH 1/2] drivers/rtc/rtc-puv3.c: use dev_dbg() instead of dev_debug() for typo issue References: <53647962.6070006@gmail.com> In-Reply-To: <53647962.6070006@gmail.com> X-Original-Sender: gang.chen.5i5j@gmail.com X-Original-Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of gang.chen.5i5j@gmail.com designates 2607:f8b0:400e:c03::232 as permitted sender) smtp.mail=gang.chen.5i5j@gmail.com; dkim=pass header.i=@gmail.com; dmarc=pass (p=NONE dis=NONE) header.from=gmail.com Reply-To: rtc-linux@googlegroups.com Precedence: list Mailing-list: list rtc-linux@googlegroups.com; contact rtc-linux+owners@googlegroups.com List-ID: X-Google-Group-Id: 712029733259 List-Post: , List-Help: , List-Archive: Sender: rtc-linux@googlegroups.com List-Subscribe: , List-Unsubscribe: , It is only a typo issue, the related commit: "1fbc4c4 drivers/rtc/rtc-puv3.c: use dev_dbg() instead of pr_debug()" The related error (unicore32 with allmodconfig): CC [M] drivers/rtc/rtc-puv3.o drivers/rtc/rtc-puv3.c: In function 'puv3_rtc_setpie': drivers/rtc/rtc-puv3.c:74: error: implicit declaration of function 'dev_debug' Signed-off-by: Chen Gang Acked-by: Xuetao Guan --- drivers/rtc/rtc-puv3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/rtc/rtc-puv3.c b/drivers/rtc/rtc-puv3.c index 1ecfe3b..c56310e 100644 --- a/drivers/rtc/rtc-puv3.c +++ b/drivers/rtc/rtc-puv3.c @@ -71,7 +71,7 @@ static int puv3_rtc_setpie(struct device *dev, int enabled) { unsigned int tmp; - dev_debug(dev, "%s: pie=%d\n", __func__, enabled); + dev_dbg(dev, "%s: pie=%d\n", __func__, enabled); spin_lock_irq(&puv3_rtc_pie_lock); tmp = readl(RTC_RTSR) & ~RTC_RTSR_HZE;