From patchwork Mon May 18 16:54:01 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shailendra Verma X-Patchwork-Id: 473525 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 8C5CF14016A for ; Tue, 19 May 2015 03:06:55 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=ejXwQTQK; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751324AbbERRGy (ORCPT ); Mon, 18 May 2015 13:06:54 -0400 Received: from mail-pd0-f195.google.com ([209.85.192.195]:36187 "EHLO mail-pd0-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751000AbbERRGx (ORCPT ); Mon, 18 May 2015 13:06:53 -0400 Received: by pdev10 with SMTP id v10so1081175pde.3; Mon, 18 May 2015 10:06:52 -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=XNe+1j/uMvuqflYKaZ1eExbdEmsfYklTuDdA9QVCd9A=; b=ejXwQTQK7pnaIvW14jbvSAyCaj6VYR8KNDQRg/3j90g5nIwWAqbxGiomCLsejzT8uk PZhec8gSjdVrMqcfR/KHeuYEEzZNdH3LKfYTJ3C0jhSgUjBEZwUc4reiB2Yb2XS6owvT uuaiYkvnmbl7mNVjUwdrqV4H2VT0fHBN1wzWAS5G+pXsEnIpFQFPJZt+M0iZ3n4F0aae OfJ+rGnSuuzVUslxLEwWHmH2L2Q3tRYoD9cYz7lFUsPmLz2aC7JK5AamiJaU4gcGx6yw wj6Auitcl78M5Cj15tF+Xv764Si12fgcnfePa6XjT6NF2xm7ZbxEPPBcfyz2iRADHyzW a+Zw== X-Received: by 10.66.145.162 with SMTP id sv2mr45800178pab.124.1431968055848; Mon, 18 May 2015 09:54:15 -0700 (PDT) Received: from localhost.localdomain ([112.196.141.99]) by mx.google.com with ESMTPSA id d7sm10583223pdn.47.2015.05.18.09.54.13 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 18 May 2015 09:54:15 -0700 (PDT) From: Shailendra Verma To: Wolfram Sang , linux-i2c@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Shailendra Verma Subject: [PATCH 11/11] i2c-core: Fix typo in comment Date: Mon, 18 May 2015 22:24:01 +0530 Message-Id: <1431968041-3226-1-git-send-email-shailendra.capricorn@gmail.com> X-Mailer: git-send-email 1.7.9.5 Sender: linux-i2c-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Signed-off-by: Shailendra Verma --- drivers/i2c/i2c-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 987c124..c40141b 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c @@ -1673,7 +1673,7 @@ void i2c_del_adapter(struct i2c_adapter *adap) * FIXME: This is old code and should ideally be replaced by an * alternative which results in decoupling the lifetime of the struct * device from the i2c_adapter, like spi or netdev do. Any solution - * should be throughly tested with DEBUG_KOBJECT_RELEASE enabled! + * should be thoroughly tested with DEBUG_KOBJECT_RELEASE enabled! */ init_completion(&adap->dev_released); device_unregister(&adap->dev);