Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

nfc: trf7970a: drop unneeded debug prints

ftrace is a preferred and standard way to debug entering and exiting
functions so drop useless debug prints.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Acked-by: Mark Greer <mgreer@animalcreek.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Jakub Kicinski
f0563ebe e52cc2a6

-8
-8
drivers/nfc/trf7970a.c
··· 2170 2170 struct spi_device *spi = to_spi_device(dev); 2171 2171 struct trf7970a *trf = spi_get_drvdata(spi); 2172 2172 2173 - dev_dbg(dev, "Suspend\n"); 2174 - 2175 2173 mutex_lock(&trf->lock); 2176 2174 2177 2175 trf7970a_shutdown(trf); ··· 2184 2186 struct spi_device *spi = to_spi_device(dev); 2185 2187 struct trf7970a *trf = spi_get_drvdata(spi); 2186 2188 int ret; 2187 - 2188 - dev_dbg(dev, "Resume\n"); 2189 2189 2190 2190 mutex_lock(&trf->lock); 2191 2191 ··· 2202 2206 struct trf7970a *trf = spi_get_drvdata(spi); 2203 2207 int ret; 2204 2208 2205 - dev_dbg(dev, "Runtime suspend\n"); 2206 - 2207 2209 mutex_lock(&trf->lock); 2208 2210 2209 2211 ret = trf7970a_power_down(trf); ··· 2216 2222 struct spi_device *spi = to_spi_device(dev); 2217 2223 struct trf7970a *trf = spi_get_drvdata(spi); 2218 2224 int ret; 2219 - 2220 - dev_dbg(dev, "Runtime resume\n"); 2221 2225 2222 2226 ret = trf7970a_power_up(trf); 2223 2227 if (!ret)