Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936652AbZFPF6a (ORCPT ); Tue, 16 Jun 2009 01:58:30 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S935751AbZFPFvW (ORCPT ); Tue, 16 Jun 2009 01:51:22 -0400 Received: from kroah.org ([198.145.64.141]:48385 "EHLO coco.kroah.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935663AbZFPFvS (ORCPT ); Tue, 16 Jun 2009 01:51:18 -0400 From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Kay Sievers , Jan Blunck , Greg Kroah-Hartman Subject: [PATCH 31/64] Driver Core: input: add nodename for input drivers Date: Mon, 15 Jun 2009 22:46:20 -0700 Message-Id: <1245131213-24168-31-git-send-email-gregkh@suse.de> X-Mailer: git-send-email 1.6.3.1 In-Reply-To: <20090616051351.GA23627@kroah.com> References: <20090616051351.GA23627@kroah.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1124 Lines: 39 From: Kay Sievers This adds support to the input core to report the proper device name to userspace for their devices. Signed-off-by: Kay Sievers Signed-off-by: Jan Blunck Signed-off-by: Greg Kroah-Hartman --- drivers/input/input.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/drivers/input/input.c b/drivers/input/input.c index 5d445f4..7c237e6 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c @@ -1265,8 +1265,14 @@ static struct device_type input_dev_type = { .uevent = input_dev_uevent, }; +static char *input_nodename(struct device *dev) +{ + return kasprintf(GFP_KERNEL, "input/%s", dev_name(dev)); +} + struct class input_class = { .name = "input", + .nodename = input_nodename, }; EXPORT_SYMBOL_GPL(input_class); -- 1.6.3.2 -- 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/