From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752385AbcHLKcd (ORCPT ); Fri, 12 Aug 2016 06:32:33 -0400 Received: from forward2j.cmail.yandex.net ([5.255.227.20]:42783 "EHLO forward2j.cmail.yandex.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752124AbcHLKcc (ORCPT ); Fri, 12 Aug 2016 06:32:32 -0400 Authentication-Results: mxback2h.mail.yandex.net; dkim=pass header.i=@yandex.ru From: Evgeniy Polyakov Envelope-From: drustafa@yandex.ru To: Wei Yongjun , Greg KH Cc: "linux-kernel@vger.kernel.org" In-Reply-To: <1470873814-18595-1-git-send-email-weiyj.lk@gmail.com> References: <1470664361-9363-1-git-send-email-weiyj.lk@gmail.com> <1470873814-18595-1-git-send-email-weiyj.lk@gmail.com> Subject: Re: [PATCH v2] w1: fix typo in parameter description MIME-Version: 1.0 Message-Id: <635831470997621@web9h.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Fri, 12 Aug 2016 13:27:01 +0300 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=utf-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi 11.08.2016, 03:03, "Wei Yongjun" : > Fix typo in parameter description. > > Signed-off-by: Wei Yongjun Looks good to me, thank you Greg, please pull it into your tree Acked-by: Evgeniy Polyakov > --- > v1 -> v2: make it as one line, comments from Evgeniy Polyakov > --- >  drivers/w1/w1.c | 3 +-- >  1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c > index bb34362..4bd898b 100644 > --- a/drivers/w1/w1.c > +++ b/drivers/w1/w1.c > @@ -53,8 +53,7 @@ int w1_max_slave_ttl = 10; >  module_param_named(timeout, w1_timeout, int, 0); >  MODULE_PARM_DESC(timeout, "time in seconds between automatic slave searches"); >  module_param_named(timeout_us, w1_timeout_us, int, 0); > -MODULE_PARM_DESC(timeout, "time in microseconds between automatic slave" > - " searches"); > +MODULE_PARM_DESC(timeout_us, "time in microseconds between automatic slave searches"); >  /* A search stops when w1_max_slave_count devices have been found in that >   * search. The next search will start over and detect the same set of devices >   * on a static 1-wire bus. Memory is not allocated based on this number, just