All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function definiti
@ 2013-08-16 18:52 Kumar Gaurav
  2013-08-16 18:53 ` [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi Greg KH
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Kumar Gaurav @ 2013-08-16 18:52 UTC (permalink / raw)
  To: kernel-janitors

---
 drivers/usb/host/xhci-ring.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
index 1e57eaf..9d4128c 100644
--- a/drivers/usb/host/xhci-ring.c
+++ b/drivers/usb/host/xhci-ring.c
@@ -286,7 +286,7 @@ void xhci_ring_cmd_db(struct xhci_hcd *xhci)
 	xhci_dbg(xhci, "// Ding dong!\n");
 	xhci_writel(xhci, DB_VALUE_HOST, &xhci->dba->doorbell[0]);
 	/* Flush PCI posted writes */
-	xhci_readl(xhci, &xhci->dba->doorbell[0]);
+	xhci_readl(&xhci->dba->doorbell[0]);
 }
 
 static int xhci_abort_cmd_ring(struct xhci_hcd *xhci)
@@ -1648,7 +1648,7 @@ static void handle_port_status(struct xhci_hcd *xhci,
 	faked_port_index = find_faked_portnum_from_hw_portnum(hcd, xhci,
 			port_id);
 
-	temp = xhci_readl(xhci, port_array[faked_port_index]);
+	temp = xhci_readl(port_array[faked_port_index]);
 	if (hcd->state = HC_STATE_SUSPENDED) {
 		xhci_dbg(xhci, "resume root hub\n");
 		usb_hcd_resume_root_hub(hcd);
@@ -1657,7 +1657,7 @@ static void handle_port_status(struct xhci_hcd *xhci,
 	if ((temp & PORT_PLC) && (temp & PORT_PLS_MASK) = XDEV_RESUME) {
 		xhci_dbg(xhci, "port resume event for port %d\n", port_id);
 
-		temp1 = xhci_readl(xhci, &xhci->op_regs->command);
+		temp1 = xhci_readl(&xhci->op_regs->command);
 		if (!(temp1 & CMD_RUN)) {
 			xhci_warn(xhci, "xHC is not running.\n");
 			goto cleanup;
@@ -2727,7 +2727,7 @@ irqreturn_t xhci_irq(struct usb_hcd *hcd)
 
 	spin_lock(&xhci->lock);
 	/* Check if the xHC generated the interrupt, or the irq is shared */
-	status = xhci_readl(xhci, &xhci->op_regs->status);
+	status = xhci_readl(&xhci->op_regs->status);
 	if (status = 0xffffffff)
 		goto hw_died;
 
@@ -2756,7 +2756,7 @@ hw_died:
 	if (hcd->irq) {
 		u32 irq_pending;
 		/* Acknowledge the PCI interrupt */
-		irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
+		irq_pending = xhci_readl(&xhci->ir_set->irq_pending);
 		irq_pending |= IMAN_IP;
 		xhci_writel(xhci, irq_pending, &xhci->ir_set->irq_pending);
 	}
@@ -3831,7 +3831,7 @@ int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags,
 	if (ret)
 		return ret;
 
-	start_frame = xhci_readl(xhci, &xhci->run_regs->microframe_index);
+	start_frame = xhci_readl(&xhci->run_regs->microframe_index);
 	start_frame &= 0x3fff;
 
 	urb->start_frame = start_frame;
-- 
1.7.9.5


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

* Re: [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi
  2013-08-16 18:52 [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function definiti Kumar Gaurav
@ 2013-08-16 18:53 ` Greg KH
  2013-08-16 18:55 ` Greg KH
  2013-08-16 19:08 ` Kumar Gaurav
  2 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2013-08-16 18:53 UTC (permalink / raw)
  To: kernel-janitors

On Sat, Aug 17, 2013 at 12:21:08AM +0530, Kumar Gaurav wrote:
> ---
>  drivers/usb/host/xhci-ring.c |   12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)

-ENO_SIGNED_OFF_BY :(

Also, where are the 5 other patches?

thanks,

greg k-h

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

* Re: [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi
  2013-08-16 18:52 [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function definiti Kumar Gaurav
  2013-08-16 18:53 ` [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi Greg KH
@ 2013-08-16 18:55 ` Greg KH
  2013-08-16 19:08 ` Kumar Gaurav
  2 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2013-08-16 18:55 UTC (permalink / raw)
  To: kernel-janitors

On Fri, Aug 16, 2013 at 11:53:56AM -0700, Greg KH wrote:
> On Sat, Aug 17, 2013 at 12:21:08AM +0530, Kumar Gaurav wrote:
> > ---
> >  drivers/usb/host/xhci-ring.c |   12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> 
> -ENO_SIGNED_OFF_BY :(
> 
> Also, where are the 5 other patches?

Nevermind, slow email server, sorry, I got them now.

greg k-h

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

* Re: [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi
  2013-08-16 18:52 [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function definiti Kumar Gaurav
  2013-08-16 18:53 ` [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi Greg KH
  2013-08-16 18:55 ` Greg KH
@ 2013-08-16 19:08 ` Kumar Gaurav
  2 siblings, 0 replies; 4+ messages in thread
From: Kumar Gaurav @ 2013-08-16 19:08 UTC (permalink / raw)
  To: kernel-janitors

On Saturday 17 August 2013 12:25 AM, Greg KH wrote:
> On Fri, Aug 16, 2013 at 11:53:56AM -0700, Greg KH wrote:
>> On Sat, Aug 17, 2013 at 12:21:08AM +0530, Kumar Gaurav wrote:
>>> ---
>>>   drivers/usb/host/xhci-ring.c |   12 ++++++------
>>>   1 file changed, 6 insertions(+), 6 deletions(-)
>> -ENO_SIGNED_OFF_BY :(
>>
>> Also, where are the 5 other patches?
> Nevermind, slow email server, sorry, I got them now.
>
> greg k-h
Ooops sorry. resending them all

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

end of thread, other threads:[~2013-08-16 19:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-16 18:52 [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function definiti Kumar Gaurav
2013-08-16 18:53 ` [PATCH 4/6] for fixing xhci_readl call in xhci_ring.c after removing xhci_hcd from function defi Greg KH
2013-08-16 18:55 ` Greg KH
2013-08-16 19:08 ` Kumar Gaurav

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.