ras.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | ras.c (011d8261117249eab97bc86a8e1ac7731e03e319) |
---|---|
1/* 2 * Copyright (C) 2014 Intel Corporation 3 * 4 * Authors: 5 * Chen, Gong <gong.chen@linux.intel.com> 6 */ 7 8#include <linux/init.h> --- 13 unchanged lines hidden (view full) --- 22 return rc; 23} 24subsys_initcall(ras_init); 25 26#if defined(CONFIG_ACPI_EXTLOG) || defined(CONFIG_ACPI_EXTLOG_MODULE) 27EXPORT_TRACEPOINT_SYMBOL_GPL(extlog_mem_event); 28#endif 29EXPORT_TRACEPOINT_SYMBOL_GPL(mc_event); | 1/* 2 * Copyright (C) 2014 Intel Corporation 3 * 4 * Authors: 5 * Chen, Gong <gong.chen@linux.intel.com> 6 */ 7 8#include <linux/init.h> --- 13 unchanged lines hidden (view full) --- 22 return rc; 23} 24subsys_initcall(ras_init); 25 26#if defined(CONFIG_ACPI_EXTLOG) || defined(CONFIG_ACPI_EXTLOG_MODULE) 27EXPORT_TRACEPOINT_SYMBOL_GPL(extlog_mem_event); 28#endif 29EXPORT_TRACEPOINT_SYMBOL_GPL(mc_event); |
30 31 32int __init parse_ras_param(char *str) 33{ 34#ifdef CONFIG_RAS_CEC 35 parse_cec_param(str); 36#endif 37 38 return 1; 39} 40__setup("ras", parse_ras_param); |
|