From patchwork Wed Oct 23 09:55:37 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Hovold X-Patchwork-Id: 3087561 Return-Path: X-Original-To: patchwork-linux-fbdev@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 61D63BF924 for ; Wed, 23 Oct 2013 09:59:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 53A5720160 for ; Wed, 23 Oct 2013 09:59:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3CB9920138 for ; Wed, 23 Oct 2013 09:59:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752161Ab3JWJ70 (ORCPT ); Wed, 23 Oct 2013 05:59:26 -0400 Received: from mail-lb0-f169.google.com ([209.85.217.169]:37644 "EHLO mail-lb0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752832Ab3JWJ4A (ORCPT ); Wed, 23 Oct 2013 05:56:00 -0400 Received: by mail-lb0-f169.google.com with SMTP id o14so522418lbi.14 for ; Wed, 23 Oct 2013 02:55:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=bYt+CXhYMrPt9yNSxBv6IfxrKUDQNUjPxAxlZu5+xkM=; b=N52A6XANq2NqexFdxgU1wpNkjqwNo1kM9Ey8oh4JsACH2hHfAi6Qaq4Yr+GI55wcms uN0Wp5YuEMZZhQweOw+PHn4u4NWW1DLbKFtiLK06TGhR0cqZFwhjzZe2RELXxc9ILrf+ x7uBBeg5jCPaLfewmqiRPMeIxoODMWujKMUPcqIA82U49EMkmB82VSrtME6OSGwNlROh 1vmAcVx0WWIQbKozkBzrPC0YuRot8Ibxs8iOi6By/HCGRmpLEghXa7HHovjVL77IT4xO 9sxNq6wR5GiAetH1Q36nleW8+d1vcDwA9NSR3GdN0l7VLxc6OaLAKOQuq7jzo6inUXg9 TfnA== X-Received: by 10.152.203.233 with SMTP id kt9mr544048lac.29.1382522158822; Wed, 23 Oct 2013 02:55:58 -0700 (PDT) Received: from xi.terra (c193-14-141-227.cust.tele2.se. [193.14.141.227]) by mx.google.com with ESMTPSA id w10sm18792531lbv.6.2013.10.23.02.55.56 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 23 Oct 2013 02:55:56 -0700 (PDT) Received: from johan by xi.terra with local (Exim 4.80.1) (envelope-from ) id 1VYvAP-0008MO-NU; Wed, 23 Oct 2013 11:55:53 +0200 From: Johan Hovold To: Richard Purdie , Jingoo Han Cc: Nicolas Ferre , Tomi Valkeinen , Jean-Christophe Plagniol-Villard , Andrew Morton , linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH 3/9] backlight: atmel-pwm-bl: fix module autoload Date: Wed, 23 Oct 2013 11:55:37 +0200 Message-Id: <1382522143-32072-4-git-send-email-jhovold@gmail.com> X-Mailer: git-send-email 1.8.4 In-Reply-To: <1382522143-32072-1-git-send-email-jhovold@gmail.com> References: <1382522143-32072-1-git-send-email-jhovold@gmail.com> Sender: linux-fbdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fbdev@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, 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 Add missing module alias which is needed for module autoloading. Acked-by: Jingoo Han Signed-off-by: Johan Hovold --- drivers/video/backlight/atmel-pwm-bl.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/backlight/atmel-pwm-bl.c b/drivers/video/backlight/atmel-pwm-bl.c index 3cb0094..cc5a5ed 100644 --- a/drivers/video/backlight/atmel-pwm-bl.c +++ b/drivers/video/backlight/atmel-pwm-bl.c @@ -229,3 +229,4 @@ module_platform_driver(atmel_pwm_bl_driver); MODULE_AUTHOR("Hans-Christian egtvedt "); MODULE_DESCRIPTION("Atmel PWM backlight driver"); MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:atmel-pwm-bl");