Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161909Ab1FAJMK (ORCPT ); Wed, 1 Jun 2011 05:12:10 -0400 Received: from cantor.suse.de ([195.135.220.2]:43799 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161826Ab1FAIP1 (ORCPT ); Wed, 1 Jun 2011 04:15:27 -0400 X-Mailbox-Line: From linux@blue.kroah.org Wed Jun 1 17:04:11 2011 Message-Id: <20110601080410.198708410@blue.kroah.org> User-Agent: quilt/0.48-16.4 Date: Wed, 01 Jun 2011 17:00:38 +0900 From: Greg KH To: linux-kernel@vger.kernel.org, stable@kernel.org Cc: stable-review@kernel.org, torvalds@linux-foundation.org, akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk, Vikram Narayanan , Jean Delvare , Greg Kroah-Hartman Subject: [102/146] i2c/writing-clients: Fix foo_driver.id_table In-Reply-To: <20110601080606.GA522@kroah.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1094 Lines: 37 2.6.38-stable review patch. If anyone has any objections, please let us know. ------------------ From: Vikram Narayanan commit 3116c86033079a1d4d4e84c40028f96b614843b8 upstream. The i2c_device_id structure variable's name is not used in the i2c_driver structure. Signed-off-by: Vikram Narayanan Signed-off-by: Jean Delvare Signed-off-by: Greg Kroah-Hartman --- Documentation/i2c/writing-clients | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Documentation/i2c/writing-clients +++ b/Documentation/i2c/writing-clients @@ -38,7 +38,7 @@ static struct i2c_driver foo_driver = { .name = "foo", }, - .id_table = foo_ids, + .id_table = foo_idtable, .probe = foo_probe, .remove = foo_remove, /* if device autodetection is needed: */ -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/