~ubuntu-branches/ubuntu/trusty/linux-linaro-omap/trusty

« back to all changes in this revision

Viewing changes to arch/powerpc/platforms/pseries/ras.c

  • Committer: Package Import Robot
  • Author(s): John Rigby, John Rigby
  • Date: 2011-09-26 10:44:23 UTC
  • Revision ID: package-import@ubuntu.com-20110926104423-57i0gl3v99b3lkfg
Tags: 3.0.0-1007.9
[ John Rigby ]

Enable crypto modules and remove crypto-modules from
exclude-module files
LP: #826021

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
 
123
123
        status = rtas_call(ras_check_exception_token, 6, 1, NULL,
124
124
                           RTAS_VECTOR_EXTERNAL_INTERRUPT,
125
 
                           irq_map[irq].hwirq,
 
125
                           virq_to_hw(irq),
126
126
                           RTAS_EPOW_WARNING | RTAS_POWERMGM_EVENTS,
127
127
                           critical, __pa(&ras_log_buf),
128
128
                                rtas_get_error_log_max());
157
157
 
158
158
        status = rtas_call(ras_check_exception_token, 6, 1, NULL,
159
159
                           RTAS_VECTOR_EXTERNAL_INTERRUPT,
160
 
                           irq_map[irq].hwirq,
 
160
                           virq_to_hw(irq),
161
161
                           RTAS_INTERNAL_ERROR, 1 /*Time Critical */,
162
162
                           __pa(&ras_log_buf),
163
163
                                rtas_get_error_log_max());
227
227
        struct rtas_error_log *h, *errhdr = NULL;
228
228
 
229
229
        if (!VALID_FWNMI_BUFFER(regs->gpr[3])) {
230
 
                printk(KERN_ERR "FWNMI: corrupt r3\n");
 
230
                printk(KERN_ERR "FWNMI: corrupt r3 0x%016lx\n", regs->gpr[3]);
231
231
                return NULL;
232
232
        }
233
233