return kvm_s390_inject_prog_irq(vcpu, &pgm_info);
 }
 
-static int handle_instruction_and_prog(struct kvm_vcpu *vcpu)
-{
-       int rc, rc2;
-
-       vcpu->stat.exit_instr_and_program++;
-       rc = handle_instruction(vcpu);
-       rc2 = handle_prog(vcpu);
-
-       if (rc == -EOPNOTSUPP)
-               vcpu->arch.sie_block->icptcode = 0x04;
-       if (rc)
-               return rc;
-       return rc2;
-}
-
 /**
  * handle_external_interrupt - used for external interruption interceptions
  *
        [0x00 >> 2] = handle_noop,
        [0x04 >> 2] = handle_instruction,
        [0x08 >> 2] = handle_prog,
-       [0x0C >> 2] = handle_instruction_and_prog,
        [0x10 >> 2] = handle_noop,
        [0x14 >> 2] = handle_external_interrupt,
        [0x18 >> 2] = handle_noop,