All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-nfc] [PATCH v2 00/15] nfc: minor printk cleanup
@ 2021-09-13 13:20 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 55+ messages in thread
From: Krzysztof Kozlowski @ 2021-09-13 13:20 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Krzysztof Opasiak, Mark Greer,
	David S. Miller, Jakub Kicinski, linux-nfc, netdev, linux-kernel,
	linux-wireless

Hi,

Changes since v1:
1. Remove unused variable in pn533 (reported by kbuild).

Best regards,
Krzysztof

Krzysztof Kozlowski (15):
  nfc: drop unneeded debug prints
  nfc: do not break pr_debug() call into separate lines
  nfc: nci: replace GPLv2 boilerplate with SPDX
  nfc: fdp: drop unneeded debug prints
  nfc: pn533: drop unneeded debug prints
  nfc: pn533: use dev_err() instead of pr_err()
  nfc: pn544: drop unneeded debug prints
  nfc: pn544: drop unneeded memory allocation fail messages
  nfc: s3fwrn5: simplify dereferencing pointer to struct device
  nfc: st-nci: drop unneeded debug prints
  nfc: st21nfca: drop unneeded debug prints
  nfc: trf7970a: drop unneeded debug prints
  nfc: microread: drop unneeded debug prints
  nfc: microread: drop unneeded memory allocation fail messages
  nfc: mrvl: drop unneeded memory allocation fail messages

 drivers/nfc/fdp/i2c.c          |  1 -
 drivers/nfc/microread/i2c.c    |  4 ----
 drivers/nfc/microread/mei.c    |  6 +-----
 drivers/nfc/nfcmrvl/fw_dnld.c  |  4 +---
 drivers/nfc/pn533/i2c.c        |  4 ----
 drivers/nfc/pn533/pn533.c      |  4 +---
 drivers/nfc/pn544/mei.c        |  8 +-------
 drivers/nfc/s3fwrn5/firmware.c | 29 +++++++++++-----------------
 drivers/nfc/s3fwrn5/nci.c      | 18 +++++++----------
 drivers/nfc/st-nci/i2c.c       |  4 ----
 drivers/nfc/st-nci/ndlc.c      |  4 ----
 drivers/nfc/st-nci/se.c        |  6 ------
 drivers/nfc/st-nci/spi.c       |  4 ----
 drivers/nfc/st21nfca/i2c.c     |  4 ----
 drivers/nfc/st21nfca/se.c      |  4 ----
 drivers/nfc/trf7970a.c         |  8 --------
 net/nfc/hci/command.c          | 16 ----------------
 net/nfc/hci/llc_shdlc.c        | 35 +++++++++-------------------------
 net/nfc/llcp_commands.c        |  8 --------
 net/nfc/llcp_core.c            |  5 +----
 net/nfc/nci/core.c             |  4 ----
 net/nfc/nci/hci.c              |  4 ----
 net/nfc/nci/ntf.c              |  9 ---------
 net/nfc/nci/uart.c             | 16 ++--------------
 24 files changed, 34 insertions(+), 175 deletions(-)

-- 
2.30.2
_______________________________________________
Linux-nfc mailing list -- linux-nfc@lists.01.org
To unsubscribe send an email to linux-nfc-leave@lists.01.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

^ permalink raw reply	[flat|nested] 55+ messages in thread

end of thread, other threads:[~2021-10-07 13:12 UTC | newest]

Thread overview: 55+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-13 13:20 [linux-nfc] [PATCH v2 00/15] nfc: minor printk cleanup Krzysztof Kozlowski
2021-09-13 13:20 ` Krzysztof Kozlowski
2021-09-13 13:20 ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 01/15] nfc: drop unneeded debug prints Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 02/15] nfc: do not break pr_debug() call into separate lines Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 03/15] nfc: nci: replace GPLv2 boilerplate with SPDX Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 04/15] nfc: fdp: drop unneeded debug prints Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 05/15] nfc: pn533: " Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 06/15] nfc: pn533: use dev_err() instead of pr_err() Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 07/15] nfc: pn544: drop unneeded debug prints Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 08/15] nfc: pn544: drop unneeded memory allocation fail messages Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 09/15] nfc: s3fwrn5: simplify dereferencing pointer to struct device Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 10/15] nfc: st-nci: drop unneeded debug prints Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 11/15] nfc: st21nfca: " Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 12/15] nfc: trf7970a: " Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 16:57   ` Mark Greer
2021-09-13 16:57     ` Mark Greer
2021-09-13 16:57     ` [linux-nfc] " Mark Greer
2021-10-07 13:01     ` Krzysztof Kozlowski
2021-10-07 13:01       ` Krzysztof Kozlowski
2021-10-07 13:01       ` Krzysztof Kozlowski
2021-10-07 13:12       ` Jakub Kicinski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 13/15] nfc: microread: " Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 14/15] nfc: microread: drop unneeded memory allocation fail messages Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20 ` [linux-nfc] [PATCH v2 15/15] nfc: mrvl: " Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski
2021-09-13 13:20   ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.