xHCI: fix printk_ratelimit() usage

printk_ratelimit() is misused in xhci-ring.c.

Signed-off-by: Andiry Xu <andiry.xu@amd.com>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>

authored by Andiry Xu and committed by Sarah Sharp 7961acd7 f2c565e2

+2 -2
+2 -2
drivers/usb/host/xhci-ring.c
··· 2452 * to set the polling interval (once the API is added). 2453 */ 2454 if (xhci_interval != ep_interval) { 2455 - if (!printk_ratelimit()) 2456 dev_dbg(&urb->dev->dev, "Driver uses different interval" 2457 " (%d microframe%s) than xHCI " 2458 "(%d microframe%s)\n", ··· 3080 * to set the polling interval (once the API is added). 3081 */ 3082 if (xhci_interval != ep_interval) { 3083 - if (!printk_ratelimit()) 3084 dev_dbg(&urb->dev->dev, "Driver uses different interval" 3085 " (%d microframe%s) than xHCI " 3086 "(%d microframe%s)\n",
··· 2452 * to set the polling interval (once the API is added). 2453 */ 2454 if (xhci_interval != ep_interval) { 2455 + if (printk_ratelimit()) 2456 dev_dbg(&urb->dev->dev, "Driver uses different interval" 2457 " (%d microframe%s) than xHCI " 2458 "(%d microframe%s)\n", ··· 3080 * to set the polling interval (once the API is added). 3081 */ 3082 if (xhci_interval != ep_interval) { 3083 + if (printk_ratelimit()) 3084 dev_dbg(&urb->dev->dev, "Driver uses different interval" 3085 " (%d microframe%s) than xHCI " 3086 "(%d microframe%s)\n",