edac_module.c (9095bf25ea08135a5b74875dd0e3eeaddc4218a0) | edac_module.c (e4dca7b7aa08b22893c45485d222b5807c1375ae) |
---|---|
1/* 2 * edac_module.c 3 * 4 * (C) 2007 www.softwarebitmaker.com 5 * 6 * This file is licensed under the terms of the GNU General Public 7 * License version 2. This program is licensed "as is" without any 8 * warranty of any kind, whether express or implied. --- 5 unchanged lines hidden (view full) --- 14 15#include "edac_mc.h" 16#include "edac_module.h" 17 18#define EDAC_VERSION "Ver: 3.0.0" 19 20#ifdef CONFIG_EDAC_DEBUG 21 | 1/* 2 * edac_module.c 3 * 4 * (C) 2007 www.softwarebitmaker.com 5 * 6 * This file is licensed under the terms of the GNU General Public 7 * License version 2. This program is licensed "as is" without any 8 * warranty of any kind, whether express or implied. --- 5 unchanged lines hidden (view full) --- 14 15#include "edac_mc.h" 16#include "edac_module.h" 17 18#define EDAC_VERSION "Ver: 3.0.0" 19 20#ifdef CONFIG_EDAC_DEBUG 21 |
22static int edac_set_debug_level(const char *buf, struct kernel_param *kp) | 22static int edac_set_debug_level(const char *buf, 23 const struct kernel_param *kp) |
23{ 24 unsigned long val; 25 int ret; 26 27 ret = kstrtoul(buf, 0, &val); 28 if (ret) 29 return ret; 30 --- 137 unchanged lines hidden --- | 24{ 25 unsigned long val; 26 int ret; 27 28 ret = kstrtoul(buf, 0, &val); 29 if (ret) 30 return ret; 31 --- 137 unchanged lines hidden --- |