mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
media: device property: Return true in fwnode_device_is_available for NULL ops
Some types of fwnode_handle do not implement the device_is_available() check, such as those created by software_nodes. There isn't really a meaningful way to check for the availability of a device that doesn't actually exist, so if the check isn't implemented just assume that the "device" is present. Suggested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Daniel Scally <djrscally@gmail.com> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
ec9ded4fa8
commit
5273382d03
@ -837,9 +837,15 @@ EXPORT_SYMBOL_GPL(fwnode_handle_put);
|
|||||||
/**
|
/**
|
||||||
* fwnode_device_is_available - check if a device is available for use
|
* fwnode_device_is_available - check if a device is available for use
|
||||||
* @fwnode: Pointer to the fwnode of the device.
|
* @fwnode: Pointer to the fwnode of the device.
|
||||||
|
*
|
||||||
|
* For fwnode node types that don't implement the .device_is_available()
|
||||||
|
* operation, this function returns true.
|
||||||
*/
|
*/
|
||||||
bool fwnode_device_is_available(const struct fwnode_handle *fwnode)
|
bool fwnode_device_is_available(const struct fwnode_handle *fwnode)
|
||||||
{
|
{
|
||||||
|
if (!fwnode_has_op(fwnode, device_is_available))
|
||||||
|
return true;
|
||||||
|
|
||||||
return fwnode_call_bool_op(fwnode, device_is_available);
|
return fwnode_call_bool_op(fwnode, device_is_available);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(fwnode_device_is_available);
|
EXPORT_SYMBOL_GPL(fwnode_device_is_available);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user