From patchwork Mon Jun 27 14:33:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: axel lin X-Patchwork-Id: 921092 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p5REXShc011744 for ; Mon, 27 Jun 2011 14:34:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751878Ab1F0OeD (ORCPT ); Mon, 27 Jun 2011 10:34:03 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:64677 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751096Ab1F0OeC (ORCPT ); Mon, 27 Jun 2011 10:34:02 -0400 Received: by pwj7 with SMTP id 7so2979306pwj.19 for ; Mon, 27 Jun 2011 07:34:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=KViU859bUhhj7L4yZ1qbtgoaX4WxUCfDv2ed5t9HEjU=; b=KYLu7BjdFIojPNjo8GppHAR7yGTeIAIi5vjMtsGZotUCfuwEXVIuASKPj8db31Q5dQ kBxCG8oM8JeVOOCieJ6VYuXiEnvHnASwyWjU9IbclC0k4JazTH1OJ+BRowadTK0XmNll OuK6r+MnQvwwjtuXe2P4W/uO4I21ZdDJLK3V4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=tFXlS99dq2Hloaye8noZV1q+iRqcP4pjjXjeLgQ61nouaQuBgvMNoZ28V8NL2ZZHPy l8GSmhNPBG5SXBteTlMG0kCmlF6BVhbdLrrWw5UFPEJurNKDvFFiTEkg2b6hojGcknIL 04/AvyHwibSiIUsFcld4E34VQkDfOeLuVxle4= Received: by 10.68.69.113 with SMTP id d17mr2816734pbu.472.1309185241696; Mon, 27 Jun 2011 07:34:01 -0700 (PDT) Received: from [218.172.224.141] (218-172-224-141.dynamic.hinet.net [218.172.224.141]) by mx.google.com with ESMTPS id u6sm4353048pbh.64.2011.06.27.07.33.59 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 27 Jun 2011 07:34:01 -0700 (PDT) Subject: [PATCH 2/2] Input: tnetv107x-ts - fix MODULE_ALIAS From: Axel Lin To: linux-kernel@vger.kernel.org Cc: Dmitry Torokhov , Cyril Chemparathy , linux-input@vger.kernel.org In-Reply-To: <1309185168.29085.0.camel@phoenix> References: <1309185168.29085.0.camel@phoenix> Date: Mon, 27 Jun 2011 22:33:57 +0800 Message-ID: <1309185237.29085.1.camel@phoenix> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 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.6 (demeter1.kernel.org [140.211.167.41]); Mon, 27 Jun 2011 14:34:14 +0000 (UTC) Remove the space between "platform:" prefix and the driver name. Signed-off-by: Axel Lin --- drivers/input/touchscreen/tnetv107x-ts.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/input/touchscreen/tnetv107x-ts.c b/drivers/input/touchscreen/tnetv107x-ts.c index 22a3411..089b0a0 100644 --- a/drivers/input/touchscreen/tnetv107x-ts.c +++ b/drivers/input/touchscreen/tnetv107x-ts.c @@ -393,5 +393,5 @@ module_exit(tsc_exit); MODULE_AUTHOR("Cyril Chemparathy"); MODULE_DESCRIPTION("TNETV107X Touchscreen Driver"); -MODULE_ALIAS("platform: tnetv107x-ts"); +MODULE_ALIAS("platform:tnetv107x-ts"); MODULE_LICENSE("GPL");