mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-06 05:03:13 +09:00
ARM: amba: Make driver_override output consistent with other buses
commit 5f53624662 upstream.
For AMBA devices with unconfigured driver override, the
"driver_override" sysfs virtual file is empty, while it contains
"(null)" for platform and PCI devices.
Make AMBA consistent with other buses by dropping the test for a NULL
pointer.
Note that contrary to popular belief, sprintf() handles NULL pointers
fine; they are printed as "(null)".
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: stable <stable@vger.kernel.org>
Reviewed-by: Todd Kjos <tkjos@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1a6e0a900b
commit
bcd73c772e
@@ -70,9 +70,6 @@ static ssize_t driver_override_show(struct device *_dev,
|
||||
{
|
||||
struct amba_device *dev = to_amba_device(_dev);
|
||||
|
||||
if (!dev->driver_override)
|
||||
return 0;
|
||||
|
||||
return sprintf(buf, "%s\n", dev->driver_override);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user