]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
cxl/pci: Remove outdated FIXME comment and BUILD_BUG_ON
authorSamasth Norway Ananda <samasth.norway.ananda@oracle.com>
Mon, 5 Jan 2026 20:38:33 +0000 (12:38 -0800)
committerDave Jiang <dave.jiang@intel.com>
Thu, 22 Jan 2026 23:58:13 +0000 (16:58 -0700)
Remove the outdated FIXME comment about switching to struct_group() and
the associated BUILD_BUG_ON check. This work was already completed in
commit 301e68dd9b9b ("cxl/core: Replace unions with struct_group()")
which converted struct cxl_regs to use struct_group_tagged().

The BUILD_BUG_ON was checking that anonymous union layout was preserved,
but since struct_group() now handles this correctly, the compile-time
check is no longer necessary.

Signed-off-by: Samasth Norway Ananda <samasth.norway.ananda@oracle.com>
Reviewed-by: Jonathan Cameron <jonathan.cameron@huawei.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Link: https://patch.msgid.link/20260105203833.1604585-1-samasth.norway.ananda@oracle.com
Signed-off-by: Dave Jiang <dave.jiang@intel.com>
drivers/cxl/pci.c

index 0be4e508affe7428a0b44e3c78de7411d9de1bfe..3b2293dffb3f7c3f911100349221eb20b653cdf4 100644 (file)
@@ -912,13 +912,6 @@ static int cxl_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
        unsigned int i;
        bool irq_avail;
 
-       /*
-        * Double check the anonymous union trickery in struct cxl_regs
-        * FIXME switch to struct_group()
-        */
-       BUILD_BUG_ON(offsetof(struct cxl_regs, memdev) !=
-                    offsetof(struct cxl_regs, device_regs.memdev));
-
        rc = pcim_enable_device(pdev);
        if (rc)
                return rc;