From patchwork Tue May 22 08:40:58 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Coly Li X-Patchwork-Id: 10417631 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 4D16860224 for ; Tue, 22 May 2018 08:41:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3DD8D27F60 for ; Tue, 22 May 2018 08:41:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3137D28B74; Tue, 22 May 2018 08:41:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EF8A328B73 for ; Tue, 22 May 2018 08:41:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751172AbeEVIlG (ORCPT ); Tue, 22 May 2018 04:41:06 -0400 Received: from mx2.suse.de ([195.135.220.15]:38118 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750733AbeEVIlF (ORCPT ); Tue, 22 May 2018 04:41:05 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 68D7CADDA; Tue, 22 May 2018 08:41:04 +0000 (UTC) From: Coly Li To: linux-bcache@vger.kernel.org Cc: linux-block@vger.kernel.org, Coly Li , Andy Shevchenko Subject: [PATCH] lib/crc64.c: add MODULE_LICENSE("GPL") Date: Tue, 22 May 2018 16:40:58 +0800 Message-Id: <20180522084058.66520-1-colyli@suse.de> X-Mailer: git-send-email 2.16.3 Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch adds MODULE_LICENSE("GPL") to lib/crc64.c to remove a compiling warninng. Signed-off-by: Coly Li Cc: Andy Shevchenko --- lib/crc64.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/crc64.c b/lib/crc64.c index ed0ffac7b26a..586e46684ee8 100644 --- a/lib/crc64.c +++ b/lib/crc64.c @@ -135,3 +135,4 @@ uint64_t crc64(const void *data, size_t len) EXPORT_SYMBOL_GPL(crc64); MODULE_DESCRIPTION("CRC64 calculations"); +MODULE_LICENSE("GPL");