* is fine as it's going to the root tile's mmio, that's
                 * guaranteed to be initialized earlier in xe_mmio_probe_early()
                 */
-               mtcfg = xe_mmio_read64_2x32(mmio, XEHP_MTCFG_ADDR);
+               mtcfg = xe_mmio_read32(mmio, XEHP_MTCFG_ADDR);
                tile_count = REG_FIELD_GET(TILE_COUNT, mtcfg) + 1;
 
                if (tile_count < xe->info.tile_count) {
                        drm_info(&xe->drm, "tile_count: %d, reduced_tile_count %d\n",
-                                       xe->info.tile_count, tile_count);
+                                xe->info.tile_count, tile_count);
                        xe->info.tile_count = tile_count;
 
                        /*
         */
        xe->mmio.size = pci_resource_len(pdev, GTTMMADR_BAR);
        xe->mmio.regs = pci_iomap(pdev, GTTMMADR_BAR, 0);
-       if (xe->mmio.regs == NULL) {
+       if (!xe->mmio.regs) {
                drm_err(&xe->drm, "failed to map registers\n");
                return -EIO;
        }
        return (u64)udw << 32 | ldw;
 }
 
-static int __xe_mmio_wait32(struct xe_mmio *mmio, struct xe_reg reg, u32 mask, u32 val, u32 timeout_us,
-                           u32 *out_val, bool atomic, bool expect_match)
+static int __xe_mmio_wait32(struct xe_mmio *mmio, struct xe_reg reg, u32 mask, u32 val,
+                           u32 timeout_us, u32 *out_val, bool atomic, bool expect_match)
 {
        ktime_t cur = ktime_get_raw();
        const ktime_t end = ktime_add_us(cur, timeout_us);