From patchwork Fri Oct 10 15:31:41 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Ziswiler X-Patchwork-Id: 398681 X-Patchwork-Delegate: sjg@chromium.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id C95781400AF for ; Sat, 11 Oct 2014 02:32:15 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 01758A7439; Fri, 10 Oct 2014 17:32:12 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id S96G28hMDoCx; Fri, 10 Oct 2014 17:32:12 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E9833A73ED; Fri, 10 Oct 2014 17:32:11 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C7CDEA73ED for ; Fri, 10 Oct 2014 17:32:06 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id jMFzd8lOwTIv for ; Fri, 10 Oct 2014 17:32:06 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mout.perfora.net (mout.perfora.net [74.208.4.194]) by theia.denx.de (Postfix) with ESMTPS id 5BB72A73EB for ; Fri, 10 Oct 2014 17:32:02 +0200 (CEST) Received: from localhost.localdomain (190-191.5-85.cust.bluewin.ch [85.5.191.190]) by mrelay.perfora.net (node=mreueus002) with ESMTP (Nemesis) id 0M0SIl-1YU1XT1X1J-00uaqE; Fri, 10 Oct 2014 17:31:57 +0200 From: Marcel Ziswiler To: u-boot@lists.denx.de Date: Fri, 10 Oct 2014 17:31:41 +0200 Message-Id: <23a3ca155ce2ca7f1d4e0f195c656612bb65a1d6.1412954943.git.marcel@ziswiler.com> X-Mailer: git-send-email 1.9.3 X-Provags-ID: V02:K0:GDGDyYUwDhImQ6rWwn3mPuiI+IBAGY/WeB/QxJde46O ehkYkASR6qwh+/HcPsO1gXZ9Gt0uR45Qdo29NRj/hrVxQE0y7y Fo3aqdpjvw08cTMIu7qS1iY+FdgxBPdIl6wVC37ChQfhO5FtLD PczkdrwtB72POFFTVn6u3BaBfifdIOfGz2yHHlGRA/f4OvuMCP hEDHVdGOWWRH+WN0B+Ca/LDDDX9ZlyqEeRgCfvUj9nWQrgznVK Lu8GWntc8kEo/mgRW1GJ2k4/K6vseEyVzGhM1jmvmXXRIObv8g adZ5XymIcfTHAtXmPWvbBZlTomv7MFxdNuQqqocm+rfKWab5xu s6Q/xEYHinNDh3ei5MUiqmcIvGZmEkMTIloCGiepPz3ZY/AhMm zaej+5qmeYgnboLWeTpajHM+iOkY4fBuySeDxtBskuo4+mvy+8 LlUPdTQ+gUhwt8io0JVc2op0gqQ== X-UI-Out-Filterresults: notjunk:1; Cc: Marek Vasut , Marcel Ziswiler , Tomas Hlavacek Subject: [U-Boot] [PATCH] gpio: header file comment spelling fixes X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.13 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Marcel Ziswiler Acked-by: Simon Glass --- include/asm-generic/gpio.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/asm-generic/gpio.h b/include/asm-generic/gpio.h index 60539d8..1ebb9c7 100644 --- a/include/asm-generic/gpio.h +++ b/include/asm-generic/gpio.h @@ -26,8 +26,8 @@ */ /** - * Request a gpio. This should be called before any of the other functions - * are used on this gpio. + * Request a GPIO. This should be called before any of the other functions + * are used on this GPIO. * * @param gp GPIO number * @param label User label for this GPIO @@ -102,7 +102,7 @@ struct udevice; * new DM GPIO API, this should be really easy to flip over to the Linux * GPIO API-alike interface. * - * Akso it would be useful to standardise additional functions like + * Also it would be useful to standardise additional functions like * pullup, slew rate and drive strength. * * gpio_request)( and gpio_free() are optional - if NULL then they will @@ -115,7 +115,7 @@ struct udevice; * SoCs there may be many banks and therefore many devices all referring * to the different IO addresses within the SoC. * - * The uclass combines all GPIO devices togther to provide a consistent + * The uclass combines all GPIO devices together to provide a consistent * numbering from 0 to n-1, where n is the number of GPIOs in total across * all devices. Be careful not to confuse offset with gpio in the parameters. */ @@ -143,7 +143,7 @@ struct dm_gpio_ops { * struct gpio_dev_priv - information about a device used by the uclass * * The uclass combines all active GPIO devices into a unified numbering - * scheme. To do this it maintains some private information aobut each + * scheme. To do this it maintains some private information about each * device. * * To implement driver model support in your GPIO driver, add a probe