Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32e573c4 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: twl6040-vibra - remove unneeded check for CONFIG_OF



Since the driver requires DT now we do not need to check if CONFIG_OF is
defined.

Reviewed-by: default avatarDavid Herrmann <dh.herrmann@gmail.com>
Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 7abf38d6
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -258,17 +258,14 @@ static SIMPLE_DEV_PM_OPS(twl6040_vibra_pm_ops, twl6040_vibra_suspend, NULL);
static int twl6040_vibra_probe(struct platform_device *pdev)
{
	struct device *twl6040_core_dev = pdev->dev.parent;
	struct device_node *twl6040_core_node = NULL;
	struct device_node *twl6040_core_node;
	struct vibra_info *info;
	int vddvibl_uV = 0;
	int vddvibr_uV = 0;
	int ret;

#ifdef CONFIG_OF
	twl6040_core_node = of_find_node_by_name(twl6040_core_dev->of_node,
						 "vibra");
#endif

	if (!twl6040_core_node) {
		dev_err(&pdev->dev, "parent of node is missing?\n");
		return -EINVAL;