linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 16/19] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
@ 2014-08-04  0:20 Hans Wennborg
  2014-08-10  4:23 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Hans Wennborg @ 2014-08-04  0:20 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel; +Cc: Hans Wennborg

Signed-off-by: Hans Wennborg <hans@hanshq.net>
---
 drivers/staging/rtl8192ee/pci.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/rtl8192ee/pci.c b/drivers/staging/rtl8192ee/pci.c
index 0215aef..349e636 100644
--- a/drivers/staging/rtl8192ee/pci.c
+++ b/drivers/staging/rtl8192ee/pci.c
@@ -649,7 +649,7 @@ static void _rtl_pci_tx_isr(struct ieee80211_hw *hw, int prio)
 
 		if ((ring->entries - skb_queue_len(&ring->queue)) == 2) {
 			RT_TRACE(COMP_ERR, DBG_LOUD,
-				 ("more desc left, wake skb_queue@%d,ring->idx = %d, skb_queue_len = 0x%d\n",
+				 ("more desc left, wake skb_queue@%d,ring->idx = %d, skb_queue_len = 0x%x\n",
 					 prio, ring->idx,
 					 skb_queue_len(&ring->queue)));
 
@@ -1628,7 +1628,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw,
 
 		if ((own == 1) && (hw_queue != BEACON_QUEUE)) {
 			RT_TRACE(COMP_ERR, DBG_WARNING,
-				 ("No more TX desc@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
+				 ("No more TX desc@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%x\n",
 				  hw_queue, ring->idx, idx,
 				  skb_queue_len(&ring->queue)));
 
@@ -1670,7 +1670,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw,
 	if ((ring->entries - skb_queue_len(&ring->queue)) < 2 &&
 	    hw_queue != BEACON_QUEUE) {
 		RT_TRACE(COMP_ERR, DBG_LOUD,
-			 ("less desc left, stop skb_queue@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
+			 ("less desc left, stop skb_queue@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%x\n",
 			  hw_queue, ring->idx, idx,
 			  skb_queue_len(&ring->queue)));
 
-- 
2.0.0.526.g5318336


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

* Re: [PATCH 16/19] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
  2014-08-04  0:20 [PATCH 16/19] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings Hans Wennborg
@ 2014-08-10  4:23 ` Greg KH
  2014-08-11  3:28   ` Hans Wennborg
  2014-08-11  3:28   ` Hans Wennborg
  0 siblings, 2 replies; 6+ messages in thread
From: Greg KH @ 2014-08-10  4:23 UTC (permalink / raw)
  To: Hans Wennborg; +Cc: devel, linux-kernel

On Sun, Aug 03, 2014 at 05:20:58PM -0700, Hans Wennborg wrote:
> Signed-off-by: Hans Wennborg <hans@hanshq.net>
> ---
>  drivers/staging/rtl8192ee/pci.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

This patch fails to apply to my tree :(


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

* Re: [PATCH 16/19] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
  2014-08-10  4:23 ` Greg KH
@ 2014-08-11  3:28   ` Hans Wennborg
  2014-08-11  3:28   ` Hans Wennborg
  1 sibling, 0 replies; 6+ messages in thread
From: Hans Wennborg @ 2014-08-11  3:28 UTC (permalink / raw)
  To: Greg KH; +Cc: devel, linux-kernel

On 08/09/2014 09:23 PM, Greg KH wrote:
> On Sun, Aug 03, 2014 at 05:20:58PM -0700, Hans Wennborg wrote:
>> Signed-off-by: Hans Wennborg <hans@hanshq.net>
>> ---
>>   drivers/staging/rtl8192ee/pci.c | 6 +++---
>>   1 file changed, 3 insertions(+), 3 deletions(-)
>
> This patch fails to apply to my tree :(
>

Sorry about that. I'll try to rebase and re-post the patch.

  - Hans

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

* Re: staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
  2014-08-10  4:23 ` Greg KH
  2014-08-11  3:28   ` Hans Wennborg
@ 2014-08-11  3:28   ` Hans Wennborg
  2014-08-11  3:28     ` [PATCH] " Hans Wennborg
  1 sibling, 1 reply; 6+ messages in thread
From: Hans Wennborg @ 2014-08-11  3:28 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel

Re-sending patch based off of
https://kernel.googlesource.com/pub/scm/linux/kernel/git/gregkh/staging


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

* [PATCH] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
  2014-08-11  3:28   ` Hans Wennborg
@ 2014-08-11  3:28     ` Hans Wennborg
  2014-08-17 16:49       ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Hans Wennborg @ 2014-08-11  3:28 UTC (permalink / raw)
  To: gregkh, devel, linux-kernel; +Cc: Hans Wennborg

Signed-off-by: Hans Wennborg <hans@hanshq.net>
---
 drivers/staging/rtl8192ee/pci.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/rtl8192ee/pci.c b/drivers/staging/rtl8192ee/pci.c
index 0215aef..349e636 100644
--- a/drivers/staging/rtl8192ee/pci.c
+++ b/drivers/staging/rtl8192ee/pci.c
@@ -649,7 +649,7 @@ static void _rtl_pci_tx_isr(struct ieee80211_hw *hw, int prio)
 
 		if ((ring->entries - skb_queue_len(&ring->queue)) == 2) {
 			RT_TRACE(COMP_ERR, DBG_LOUD,
-				 ("more desc left, wake skb_queue@%d,ring->idx = %d, skb_queue_len = 0x%d\n",
+				 ("more desc left, wake skb_queue@%d,ring->idx = %d, skb_queue_len = 0x%x\n",
 					 prio, ring->idx,
 					 skb_queue_len(&ring->queue)));
 
@@ -1628,7 +1628,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw,
 
 		if ((own == 1) && (hw_queue != BEACON_QUEUE)) {
 			RT_TRACE(COMP_ERR, DBG_WARNING,
-				 ("No more TX desc@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
+				 ("No more TX desc@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%x\n",
 				  hw_queue, ring->idx, idx,
 				  skb_queue_len(&ring->queue)));
 
@@ -1670,7 +1670,7 @@ static int rtl_pci_tx(struct ieee80211_hw *hw,
 	if ((ring->entries - skb_queue_len(&ring->queue)) < 2 &&
 	    hw_queue != BEACON_QUEUE) {
 		RT_TRACE(COMP_ERR, DBG_LOUD,
-			 ("less desc left, stop skb_queue@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%d\n",
+			 ("less desc left, stop skb_queue@%d, ring->idx = %d, idx = %d, skb_queue_len = 0x%x\n",
 			  hw_queue, ring->idx, idx,
 			  skb_queue_len(&ring->queue)));
 
-- 
2.0.0.526.g5318336


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

* Re: [PATCH] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings
  2014-08-11  3:28     ` [PATCH] " Hans Wennborg
@ 2014-08-17 16:49       ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2014-08-17 16:49 UTC (permalink / raw)
  To: Hans Wennborg; +Cc: devel, linux-kernel

On Sun, Aug 10, 2014 at 08:28:42PM -0700, Hans Wennborg wrote:
> Signed-off-by: Hans Wennborg <hans@hanshq.net>
> ---
>  drivers/staging/rtl8192ee/pci.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

This patch doesn't apply at all to my tree, can you please refresh it
against the next linux-next tree and resend?

thanks,

greg k-h

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

end of thread, other threads:[~2014-08-17 16:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-04  0:20 [PATCH 16/19] staging: rtl8192ee: fix %d confusingly prefixed with 0x in format strings Hans Wennborg
2014-08-10  4:23 ` Greg KH
2014-08-11  3:28   ` Hans Wennborg
2014-08-11  3:28   ` Hans Wennborg
2014-08-11  3:28     ` [PATCH] " Hans Wennborg
2014-08-17 16:49       ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).