mmio_invalidate(npu_context, 0, ~0UL);
 }
 
-static void pnv_npu2_mn_change_pte(struct mmu_notifier *mn,
-                               struct mm_struct *mm,
-                               unsigned long address,
-                               pte_t pte)
-{
-       struct npu_context *npu_context = mn_to_npu_context(mn);
-       mmio_invalidate(npu_context, address, PAGE_SIZE);
-}
-
 static void pnv_npu2_mn_invalidate_range(struct mmu_notifier *mn,
                                        struct mm_struct *mm,
                                        unsigned long start, unsigned long end)
 
 static const struct mmu_notifier_ops nv_nmmu_notifier_ops = {
        .release = pnv_npu2_mn_release,
-       .change_pte = pnv_npu2_mn_change_pte,
        .invalidate_range = pnv_npu2_mn_invalidate_range,
 };