From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751925AbdKZCxq (ORCPT ); Sat, 25 Nov 2017 21:53:46 -0500 Received: from mail-pl0-f66.google.com ([209.85.160.66]:44119 "EHLO mail-pl0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751896AbdKZCxp (ORCPT ); Sat, 25 Nov 2017 21:53:45 -0500 X-Google-Smtp-Source: AGs4zMYyNtq7SYI8sSLjXn1GD292xs9uUcTIB0d9gyabzo10rjpYOu/6EvsE6wXzjcEstRqwbAoXTw== From: Daniel Axtens To: paul.burton@mips.com, miguel.ojeda.sandonis@gmail.com, linux-kernel@vger.kernel.org Cc: Daniel Axtens Subject: [PATCH] auxdisplay: img-ascii-lcd: add MODULE_LICENSE("GPL") Date: Sun, 26 Nov 2017 13:53:29 +1100 Message-Id: <20171126025329.32044-1-dja@axtens.net> X-Mailer: git-send-email 2.11.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This matches the header at the top of the file and squashes: WARNING: modpost: missing MODULE_LICENSE() in drivers/auxdisplay/img-ascii-lcd.o see include/linux/module.h for more information Signed-off-by: Daniel Axtens --- drivers/auxdisplay/img-ascii-lcd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/auxdisplay/img-ascii-lcd.c b/drivers/auxdisplay/img-ascii-lcd.c index db040b378224..7315ffa79537 100644 --- a/drivers/auxdisplay/img-ascii-lcd.c +++ b/drivers/auxdisplay/img-ascii-lcd.c @@ -441,3 +441,5 @@ static struct platform_driver img_ascii_lcd_driver = { .remove = img_ascii_lcd_remove, }; module_platform_driver(img_ascii_lcd_driver); + +MODULE_LICENSE("GPL"); -- 2.11.0