From patchwork Mon Oct 18 22:23:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 263531 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9IMKdau000631 for ; Mon, 18 Oct 2010 22:20:39 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755985Ab0JRWUi (ORCPT ); Mon, 18 Oct 2010 18:20:38 -0400 Received: from smtp.gentoo.org ([140.211.166.183]:46825 "EHLO smtp.gentoo.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755444Ab0JRWUi (ORCPT ); Mon, 18 Oct 2010 18:20:38 -0400 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 9CEC01B404D; Mon, 18 Oct 2010 22:20:37 +0000 (UTC) From: Mike Frysinger To: linux-input@vger.kernel.org, Dmitry Torokhov Cc: device-drivers-devel@blackfin.uclinux.org, Michael Hennerich Subject: [PATCH] input: adp5588-keys: use obvious i2c_device_id name string Date: Mon, 18 Oct 2010 18:23:00 -0400 Message-Id: <1287440580-1497-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.3.1 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Mon, 18 Oct 2010 22:20:39 +0000 (UTC) diff --git a/drivers/input/keyboard/adp5588-keys.c b/drivers/input/keyboard/adp5588-keys.c index d6918cb..b92d1cd 100644 --- a/drivers/input/keyboard/adp5588-keys.c +++ b/drivers/input/keyboard/adp5588-keys.c @@ -660,7 +660,7 @@ static const struct dev_pm_ops adp5588_dev_pm_ops = { #endif static const struct i2c_device_id adp5588_id[] = { - { KBUILD_MODNAME, 0 }, + { "adp5588-keys", 0 }, { "adp5587-keys", 0 }, { } };