From patchwork Fri Sep 26 06:19:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Axel Lin X-Patchwork-Id: 4978751 Return-Path: X-Original-To: patchwork-linux-spi@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 1177FBEEA6 for ; Fri, 26 Sep 2014 06:19:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0DF9B202AE for ; Fri, 26 Sep 2014 06:19:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 35E89202B8 for ; Fri, 26 Sep 2014 06:19:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753561AbaIZGT1 (ORCPT ); Fri, 26 Sep 2014 02:19:27 -0400 Received: from mail-pa0-f41.google.com ([209.85.220.41]:34077 "EHLO mail-pa0-f41.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753514AbaIZGT1 (ORCPT ); Fri, 26 Sep 2014 02:19:27 -0400 Received: by mail-pa0-f41.google.com with SMTP id fa1so4105860pad.14 for ; Thu, 25 Sep 2014 23:19:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-type:mime-version:content-transfer-encoding; bh=GVUB9z9flaWCPWcbnUHAbBP/+mTn6pxSwA8jW6Nqn1E=; b=Eq+kzPnwuF5vdT1Ajon0eg4Kt4SnH/W5K9sBcNWZkfqVOXC55ujTWaUx2Jqp3Gqugq rwbYFnSbD8dca6EykVlSoircNyavYOsWI8x9n+Jz5K+FAC5xQMwOQUuU1IdDDfU4gg0Y hz2SqeD8XHE2w02e2vm9lL4QhejN2MMxhZ44bQTSjbPw4Uc/ow/huQrVKemEBdeeEAvh yXwXGd0wArKYJNxLRKYcbD0FRXiC3Vu7ydCKBGLpG4GZS3SoDvlxOYrlzUUxZqb0hU3c Xp50bYshOG9oxDyZJUU91vYX3o1Xn/1tTrTWHwUo5iFRXWnyPdshOnOgFiCXw27l0h6p Y3Rw== X-Gm-Message-State: ALoCoQm6dHZuBYqGw0RxkMAMctE+XjbpfBmpA6xny8o/E/MmHGw9sFLmYFIaP8RzTONiiqylwwjO X-Received: by 10.67.1.9 with SMTP id bc9mr27212523pad.42.1411712367004; Thu, 25 Sep 2014 23:19:27 -0700 (PDT) Received: from [192.168.0.105] (218-164-30-30.dynamic.hinet.net. [218.164.30.30]) by mx.google.com with ESMTPSA id ra7sm3914956pab.22.2014.09.25.23.19.25 for (version=SSLv3 cipher=RC4-SHA bits=128/128); Thu, 25 Sep 2014 23:19:26 -0700 (PDT) Message-ID: <1411712362.23531.1.camel@phoenix> Subject: [PATCH 2/2] spi: bcm53xx: Add missing module information From: Axel Lin To: Mark Brown Cc: =?gb2312?Q?Rafa=810=920_Mi=810=920ecki?= , linux-spi Date: Fri, 26 Sep 2014 14:19:22 +0800 In-Reply-To: <1411712311.23531.0.camel@phoenix> References: <1411712311.23531.0.camel@phoenix> X-Mailer: Evolution 3.10.4-0ubuntu2 Mime-Version: 1.0 Sender: linux-spi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-spi@vger.kernel.org X-Spam-Status: No, score=-7.6 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 Mainly to fix missing MODULE_LICENSE. Also add MODULE_DESCRIPTION and MODULE_AUTHOR. Signed-off-by: Axel Lin --- drivers/spi/spi-bcm53xx.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/spi/spi-bcm53xx.c b/drivers/spi/spi-bcm53xx.c index e6600f7..17b34cb 100644 --- a/drivers/spi/spi-bcm53xx.c +++ b/drivers/spi/spi-bcm53xx.c @@ -293,3 +293,7 @@ static void __exit bcm53xxspi_module_exit(void) module_init(bcm53xxspi_module_init); module_exit(bcm53xxspi_module_exit); + +MODULE_DESCRIPTION("Broadcom BCM53xx SPI Controller driver"); +MODULE_AUTHOR("Rafa? Mi?ecki "); +MODULE_LICENSE("GPL");