Subject: [ibm-linux-cell] [PATCH] cell: fix null smm_pgsz_get pointer When booting the current cell tree, I get a page fault on 0x0, due to spu_priv1_ops->smm_pgsz_set being NULL. This sets adds the omitted assignment. Booted on cell (DD2). Signed-off-by: Jeremy Kerr Signed-off-by: Arnd Bergmann arch/powerpc/platforms/cell/spu_priv1_mmio.c | 1 + 1 file changed, 1 insertion(+) Index: linus-2.6/arch/powerpc/platforms/cell/spu_priv1_mmio.c =================================================================== --- linus-2.6.orig/arch/powerpc/platforms/cell/spu_priv1_mmio.c +++ linus-2.6/arch/powerpc/platforms/cell/spu_priv1_mmio.c @@ -160,6 +160,7 @@ const struct spu_priv1_ops spu_priv1_mmi .mfc_sr1_get = mfc_sr1_get, .mfc_tclass_id_set = mfc_tclass_id_set, .mfc_tclass_id_get = mfc_tclass_id_get, + .smm_pgsz_set = smm_pgsz_set, .tlb_invalidate = tlb_invalidate, .resource_allocation_groupID_set = resource_allocation_groupID_set, .resource_allocation_groupID_get = resource_allocation_groupID_get,