From: Parth Y Shah Date: Fri, 3 Aug 2018 10:20:38 +0000 (+0530) Subject: misc: cxl: changed asterisk position X-Git-Tag: v4.19-rc1~100^2~3 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0171114210c7a3181f64118b0372b0eae2b57649;p=uclinux-h8%2Flinux.git misc: cxl: changed asterisk position Resolved <"foo* bar" should be "foo *bar"> error Signed-off-by: Parth Y Shah Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/cxl/fault.c b/drivers/misc/cxl/fault.c index 70dbb6de102c..d45f3e6b17d2 100644 --- a/drivers/misc/cxl/fault.c +++ b/drivers/misc/cxl/fault.c @@ -33,7 +33,7 @@ static bool sste_matches(struct cxl_sste *sste, struct copro_slb *slb) * This finds a free SSTE for the given SLB, or returns NULL if it's already in * the segment table. */ -static struct cxl_sste* find_free_sste(struct cxl_context *ctx, +static struct cxl_sste *find_free_sste(struct cxl_context *ctx, struct copro_slb *slb) { struct cxl_sste *primary, *sste, *ret = NULL;