From: Mauro Carvalho Chehab Date: Wed, 2 Jun 2021 14:42:39 +0000 (+0200) Subject: media: rtl28xxu: replace a NO-BREAK SPACE character X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ffcf1b0ae3fa84f5f3f4bd1ee440e60b72f5c840;p=linux.git media: rtl28xxu: replace a NO-BREAK SPACE character Instead of using: - U+00a0 (' '): NO-BREAK SPACE Use a normal white space. This was probably introduced by some cut-and-paste. Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c index 2c04ed8af0e44..83705730e37ec 100644 --- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c +++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c @@ -1777,7 +1777,7 @@ static int rtl2832u_rc_query(struct dvb_usb_device *d) ir_raw_event_store_with_filter(d->rc_dev, &ev); } - /* 'flush' ir_raw_event_store_with_filter() */ + /* 'flush' ir_raw_event_store_with_filter() */ ir_raw_event_handle(d->rc_dev); exit: return ret;