From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from laurent.telenet-ops.be (laurent.telenet-ops.be [195.130.137.89]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8EB8C1CD35 for ; Mon, 26 Feb 2024 11:09:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.89 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708945782; cv=none; b=taeJ0q+u7zVBm6TllDW7gvgV/EE4Ws9o8b+NhIu2IQB7+V8EMhH76IjjNNgQ0nsDF7w8g1d9UcX06TdRyDA3AvS6brkYwujc1dw2zxrwhZbQ1GmuuG5L3orYrW4d32dQBOKmGN91loTTQ9H0MhTk01DL1VoVuDOSG4pCqVJeCcM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708945782; c=relaxed/simple; bh=QfAbmpSdPxk3PLAQItfucxGrrmocc9C9SjRrIqs0/z8=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=GLtC/RFl0APafKckrfRbysUf+M5c0JS6NK4/5bWBIuHDEXKceHloMG35HJgx+z56HDar9CM9+BpxttU2INdhi2A0/g2oHYFeGQlFq+HFADu1vG5DxIC4FvZDHEOtG6ZsGPCs+l1k7ikgttd9Us27xF8b8jsp0uHVcUBIWbm6ROE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.137.89 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:7662:e968:947d:f3d0]) by laurent.telenet-ops.be with bizsmtp id rn9X2B00L5Kh3Z501n9XlV; Mon, 26 Feb 2024 12:09:31 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1reYrK-001lYB-29; Mon, 26 Feb 2024 12:09:31 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1reYrT-004NKE-Ii; Mon, 26 Feb 2024 12:09:31 +0100 From: Geert Uytterhoeven To: Antonios Motakis , Eric Auger , Alex Williamson Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] vfio: amba: Rename pl330_ids[] to vfio_amba_ids[] Date: Mon, 26 Feb 2024 12:09:26 +0100 Message-Id: <1d1b873b59b208547439225aee1f24d6f2512a1f.1708945194.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Obviously drivers/vfio/platform/vfio_amba.c started its life as a simplified copy of drivers/dma/pl330.c, but not all variable names were updated. Signed-off-by: Geert Uytterhoeven --- drivers/vfio/platform/vfio_amba.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/vfio/platform/vfio_amba.c b/drivers/vfio/platform/vfio_amba.c index 6464b3939ebcfb53..485c6f9161a91be0 100644 --- a/drivers/vfio/platform/vfio_amba.c +++ b/drivers/vfio/platform/vfio_amba.c @@ -122,16 +122,16 @@ static const struct vfio_device_ops vfio_amba_ops = { .detach_ioas = vfio_iommufd_physical_detach_ioas, }; -static const struct amba_id pl330_ids[] = { +static const struct amba_id vfio_amba_ids[] = { { 0, 0 }, }; -MODULE_DEVICE_TABLE(amba, pl330_ids); +MODULE_DEVICE_TABLE(amba, vfio_amba_ids); static struct amba_driver vfio_amba_driver = { .probe = vfio_amba_probe, .remove = vfio_amba_remove, - .id_table = pl330_ids, + .id_table = vfio_amba_ids, .drv = { .name = "vfio-amba", .owner = THIS_MODULE, -- 2.34.1