drivers: base: remove check for callback in coredump_store()
The check for the .coredump() callback in coredump_store() is redundant. It is already assured the device driver implements the callback upon creating the coredump sysfs entry. Signed-off-by: Arend van Spriel <aspriel@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d723522b0b
commit
1fe56e0caf
1 changed files with 1 additions and 2 deletions
|
@ -292,8 +292,7 @@ static ssize_t coredump_store(struct device *dev, struct device_attribute *attr,
|
|||
const char *buf, size_t count)
|
||||
{
|
||||
device_lock(dev);
|
||||
if (dev->driver->coredump)
|
||||
dev->driver->coredump(dev);
|
||||
dev->driver->coredump(dev);
|
||||
device_unlock(dev);
|
||||
|
||||
return count;
|
||||
|
|
Loading…
Reference in a new issue