From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CBEBBC4332F for ; Mon, 21 Nov 2022 14:51:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231856AbiKUOvE (ORCPT ); Mon, 21 Nov 2022 09:51:04 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39958 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231860AbiKUOuc (ORCPT ); Mon, 21 Nov 2022 09:50:32 -0500 Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 32CE183EBF; Mon, 21 Nov 2022 06:42:42 -0800 (PST) Message-ID: <20221121140050.068862518@linutronix.de> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1669041603; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=rOGH2uTdH3rpdejv2KcowoAdUUfZ4dmd83F9d2EYah8=; b=kp4D3GKb7nU6F1yg6NwswGLXCMErUu2j1z5Yc8FR/7vA0SvAzwQoxLZs6iE000Xe7IwbqO Jn4YSyaYAhfChXhmhvc1j7nPOiLEcDbA2nzonaoP3uwBDJpV7xS6gtXfPsjDZLts32LReO PUSvbaylss4TVKeVci0EhDE8Zip5GYW0j1p3BBPusjKhFWo8lZzF+5gLkiijziWvxmG1yX 8Hn0xrsFP7ZvcXQ4fk+y/4QttVyGj7329Hr6lEoWvOCPWxQob3YrfpwJeXg8W5LSZF3pY4 bU0A+CW/UQJWoW8/HuDkjw+unDl6DxYP2lyO1JMMlbND/msVoJSHPqx6dtEmCQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1669041603; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: references:references; bh=rOGH2uTdH3rpdejv2KcowoAdUUfZ4dmd83F9d2EYah8=; b=e/+tc2UbfHnZ1FAklAgFRaCtCPIvd5ML0hFzARYV+CgyrI6Sts4Xv9QzbcPhFJRMGLsOvZ 7aLdCJD4KW4NWeAQ== From: Thomas Gleixner To: LKML Cc: Will Deacon , linux-pci@vger.kernel.org, Bjorn Helgaas , Lorenzo Pieralisi , Marc Zyngier , Greg Kroah-Hartman , Jason Gunthorpe , Andrew Lunn , Gregory Clement , Sebastian Hesselbarth , Ammar Faizi , Robin Murphy , Lorenzo Pieralisi , Nishanth Menon , Tero Kristo , Santosh Shilimkar , linux-arm-kernel@lists.infradead.org, Vinod Koul , Sinan Kaya , Andy Gross , Bjorn Andersson , Mark Rutland , Shameerali Kolothum Thodi , Zenghui Yu , Shawn Guo , Sascha Hauer , Fabio Estevam Subject: [patch V2 28/40] genirq/msi: Remove platform_msi_create_device_domain() References: <20221121135653.208611233@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Date: Mon, 21 Nov 2022 15:40:03 +0100 (CET) Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org No more users. Signed-off-by: Thomas Gleixner --- include/linux/msi.h | 2 -- 1 file changed, 2 deletions(-) --- a/include/linux/msi.h +++ b/include/linux/msi.h @@ -646,8 +646,6 @@ struct irq_domain * const struct irq_domain_ops *ops, void *host_data); -#define platform_msi_create_device_domain(dev, nvec, write, ops, data) \ - __platform_msi_create_device_domain(dev, nvec, false, write, ops, data) #define platform_msi_create_device_tree_domain(dev, nvec, write, ops, data) \ __platform_msi_create_device_domain(dev, nvec, true, write, ops, data)