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

Commit 0173bfd4 authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Ville Syrjälä
Browse files

drm/bridge: analogix-anx78xx: Remove duplicate NULL check



Since i2c_unregister_device() became NULL-aware we may remove duplicate
NULL check.

Cc: Archit Taneja <architt@codeaurora.org>
Cc: Andrzej Hajda <a.hajda@samsung.com>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Cc: David Airlie <airlied@linux.ie>
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20171031142149.32512-6-andriy.shevchenko@linux.intel.com


Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
parent 739ebf51
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1301,7 +1301,6 @@ static void unregister_i2c_dummy_clients(struct anx78xx *anx78xx)
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(anx78xx->i2c_dummy); i++)
		if (anx78xx->i2c_dummy[i])
		i2c_unregister_device(anx78xx->i2c_dummy[i]);
}