diff options
author | Borislav Petkov <bp@suse.de> | 2015-11-30 14:20:41 +0100 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2015-12-11 16:56:41 +0100 |
commit | d4538000ca4354a2c07cdd31ce994af7d23e24d6 (patch) | |
tree | 90ba7e97ebb4141e91368fe6a08e6d8408cdffc8 /drivers/edac/edac_pci_sysfs.c | |
parent | a97d26270169dc30ef28f0860097b7dc793206be (diff) | |
download | linux-d4538000ca4354a2c07cdd31ce994af7d23e24d6.tar.gz linux-d4538000ca4354a2c07cdd31ce994af7d23e24d6.tar.bz2 linux-d4538000ca4354a2c07cdd31ce994af7d23e24d6.zip |
EDAC: Remove edac_get_sysfs_subsys() error handling
It cannot fail now. We either load EDAC core after having successfully
initialized edac_subsys or we don't.
Signed-off-by: Borislav Petkov <bp@suse.de>
Diffstat (limited to 'drivers/edac/edac_pci_sysfs.c')
-rw-r--r-- | drivers/edac/edac_pci_sysfs.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/edac/edac_pci_sysfs.c b/drivers/edac/edac_pci_sysfs.c index 262f56cca9ff..6e3428ba400f 100644 --- a/drivers/edac/edac_pci_sysfs.c +++ b/drivers/edac/edac_pci_sysfs.c @@ -331,10 +331,7 @@ static struct kobj_type ktype_edac_pci_main_kobj = { }; /** - * edac_pci_main_kobj_setup() - * - * setup the sysfs for EDAC PCI attributes - * assumes edac_subsys has already been initialized + * edac_pci_main_kobj_setup: Setup the sysfs for EDAC PCI attributes. */ static int edac_pci_main_kobj_setup(void) { @@ -351,11 +348,6 @@ static int edac_pci_main_kobj_setup(void) * controls and attributes */ edac_subsys = edac_get_sysfs_subsys(); - if (edac_subsys == NULL) { - edac_dbg(1, "no edac_subsys\n"); - err = -ENODEV; - goto decrement_count_fail; - } /* Bump the reference count on this module to ensure the * modules isn't unloaded until we deconstruct the top |