From: Stephen Rothwell Date: Tue, 30 Jun 2020 05:51:50 +0000 (+1000) Subject: thunderbolt: merge fix for kunix_resource changes X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=71fa1a4489ff93ac4acd7e6c5b00098ba53a4485;p=linux.git thunderbolt: merge fix for kunix_resource changes Signed-off-by: Stephen Rothwell Signed-off-by: Linus Torvalds --- diff --git a/drivers/thunderbolt/test.c b/drivers/thunderbolt/test.c index acb8b62568471..a4d78811f7e20 100644 --- a/drivers/thunderbolt/test.c +++ b/drivers/thunderbolt/test.c @@ -17,13 +17,13 @@ static int __ida_init(struct kunit_resource *res, void *context) struct ida *ida = context; ida_init(ida); - res->allocation = ida; + res->data = ida; return 0; } static void __ida_destroy(struct kunit_resource *res) { - struct ida *ida = res->allocation; + struct ida *ida = res->data; ida_destroy(ida); }