From patchwork Sun Sep 1 18:02:46 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Holtmann X-Patchwork-Id: 2852588 X-Patchwork-Delegate: jikos@jikos.cz Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id E9902C0AB5 for ; Sun, 1 Sep 2013 18:02:57 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2095020259 for ; Sun, 1 Sep 2013 18:02:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D59D820257 for ; Sun, 1 Sep 2013 18:02:55 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757843Ab3IASCz (ORCPT ); Sun, 1 Sep 2013 14:02:55 -0400 Received: from s15283307.onlinehome-server.info ([87.106.208.187]:47008 "EHLO mail.holtmann.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757842Ab3IASCy (ORCPT ); Sun, 1 Sep 2013 14:02:54 -0400 Received: from localhost.localdomain (S010620c9d099deff.vc.shawcable.net [24.84.124.211]) by mail.holtmann.org (Postfix) with ESMTPSA id BBCEE8B343; Sun, 1 Sep 2013 20:02:48 +0200 (CEST) From: Marcel Holtmann To: dh.herrmann@googlemail.com, jkosina@suse.cz Cc: linux-input@vger.kernel.org Subject: [PATCH] HID: uhid: add devname module alias Date: Sun, 1 Sep 2013 11:02:46 -0700 Message-Id: <1378058566-5207-1-git-send-email-marcel@holtmann.org> X-Mailer: git-send-email 1.8.3.1 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-9.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP For simple device node creation, add the devname module alias. Signed-off-by: Marcel Holtmann Reviewed-by: David Herrmann --- drivers/hid/uhid.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/hid/uhid.c b/drivers/hid/uhid.c index fc307e0..9ab7dfc 100644 --- a/drivers/hid/uhid.c +++ b/drivers/hid/uhid.c @@ -659,3 +659,4 @@ module_exit(uhid_exit); MODULE_LICENSE("GPL"); MODULE_AUTHOR("David Herrmann "); MODULE_DESCRIPTION("User-space I/O driver support for HID subsystem"); +MODULE_ALIAS("devname:" UHID_NAME);