From: Phillip Potter Date: Sat, 8 Jan 2022 00:55:48 +0000 (+0000) Subject: staging: r8188eu: remove DBG_88E call from os_dep/osdep_service.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6397fb278bd92cc60a19f9779061dc3f677dfdc2;p=linux.git staging: r8188eu: remove DBG_88E call from os_dep/osdep_service.c Remove the single DBG_88E macro call from os_dep/osdep_service.c, as it is unreachable anyway. This gets the driver closer to the eventual removal of DBG_88E itself. Signed-off-by: Phillip Potter Link: https://lore.kernel.org/r/20220108005550.26264-4-phil@philpotter.co.uk Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/r8188eu/os_dep/osdep_service.c b/drivers/staging/r8188eu/os_dep/osdep_service.c index 59bdd0abea7ef..7a6fcc96081a4 100644 --- a/drivers/staging/r8188eu/os_dep/osdep_service.c +++ b/drivers/staging/r8188eu/os_dep/osdep_service.c @@ -236,8 +236,6 @@ void *rtw_cbuf_pop(struct rtw_cbuf *cbuf) if (rtw_cbuf_empty(cbuf)) return NULL; - if (0) - DBG_88E("%s on %u\n", __func__, cbuf->read); buf = cbuf->bufs[cbuf->read]; cbuf->read = (cbuf->read + 1) % cbuf->size;