From patchwork Sat May 27 05:31:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Darren Hart X-Patchwork-Id: 9751501 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 96FF8603B4 for ; Sat, 27 May 2017 05:32:04 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8A24D26538 for ; Sat, 27 May 2017 05:32:04 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7EAB928470; Sat, 27 May 2017 05:32:04 +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=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID 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 138B226538 for ; Sat, 27 May 2017 05:32:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751024AbdE0Fbm (ORCPT ); Sat, 27 May 2017 01:31:42 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:55249 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750750AbdE0Fbl (ORCPT ); Sat, 27 May 2017 01:31:41 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:References:In-Reply-To:Message-Id:Date:Subject:Cc: To:From:Sender:Reply-To:Content-ID:Content-Description:Resent-Date: Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=8MXlRNSZ1VxskF9rc9CchGGK8XLF9iOmoC7PeSA80DY=; b=UQMzmrtwL9EyIUy8GbY3+LYX8 3qYcyz3Ht/bMakoaBMFT2xNdp8GH9EMr9pepufOunVKKNHTZITc3ACxtJLuH1NR6F0fQbUxGOMHTk V6fg4jzejbdLtu+f5dK7U+xC0ybudFv8iiPV6Qr5tr6KWN6iVeOEZxKyFy+GHo7QzSS4rPgHjLSQ2 qrLrTjJumtky4uebPjoN6XQt14vLbKmRtzpoGrx5uwbD/aPMiVHp4zF4ECdWxbd1/cnTzChtnQCNp i0sPuzKLoO+HOjcu/TNuUafOk/QeDAMW8az+srM0VoOSga/XSvN2fjmuxl/ccu0BqLy9TdxBBcK4v q+3wu6H9A==; Received: from dvhart by bombadil.infradead.org with local (Exim 4.87 #1 (Red Hat Linux)) id 1dEUKA-0000cB-VY; Sat, 27 May 2017 05:31:39 +0000 From: Darren Hart To: platform-driver-x86@vger.kernel.org Cc: Andy Shevchenko , Andy Lutomirski , Andy Lutomirski , Mario Limonciello , =?UTF-8?q?Pali=20Roh=C3=A1r?= , Rafael Wysocki , linux-kernel@vger.kernel.org, linux-acpi@vger.kernel.org, Darren Hart Subject: [PATCH 01/16] platform/x86: wmi: Drop "Mapper (un)loaded" messages Date: Fri, 26 May 2017 22:31:15 -0700 Message-Id: X-Mailer: git-send-email 2.9.4 In-Reply-To: References: In-Reply-To: References: MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Andy Lutomirski WMI is just a driver. There is no need to announce when it is loaded. Signed-off-by: Andy Lutomirski Cc: Andy Lutomirski Cc: Mario Limonciello Cc: Pali Rohár Cc: Rafael Wysocki Cc: linux-kernel@vger.kernel.org Cc: platform-driver-x86@vger.kernel.org Cc: linux-acpi@vger.kernel.org Signed-off-by: Darren Hart (VMware) --- drivers/platform/x86/wmi.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index ceeb8c1..0043581 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c @@ -836,7 +836,6 @@ static int __init acpi_wmi_init(void) return error; } - pr_info("Mapper loaded\n"); return 0; } @@ -844,8 +843,6 @@ static void __exit acpi_wmi_exit(void) { acpi_bus_unregister_driver(&acpi_wmi_driver); class_unregister(&wmi_class); - - pr_info("Mapper unloaded\n"); } subsys_initcall(acpi_wmi_init);