Commit cea89623 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Greg Kroah-Hartman
Browse files

driver core/platform_device_add_resources: set resource to NULL if !res



This makes the res = NULL case more consistant to the res != NULL case
as now both overwrite pdev->resource.

Reviewed-by: default avatarViresh Kumar <viresh.kumar@st.com>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 251e031d
Loading
Loading
Loading
Loading
+9 −10
Original line number Diff line number Diff line
@@ -192,19 +192,18 @@ EXPORT_SYMBOL_GPL(platform_device_alloc);
int platform_device_add_resources(struct platform_device *pdev,
				  const struct resource *res, unsigned int num)
{
	struct resource *r;

	if (!res)
		return 0;
	struct resource *r = NULL;

	if (res) {
		r = kmemdup(res, sizeof(struct resource) * num, GFP_KERNEL);
	if (r) {
		if (!r)
			return -ENOMEM;
	}

	pdev->resource = r;
	pdev->num_resources = num;
	return 0;
}
	return -ENOMEM;
}
EXPORT_SYMBOL_GPL(platform_device_add_resources);

/**