lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20250311160637.467759-1-surajpatil522@gmail.com>
Date: Tue, 11 Mar 2025 16:06:37 +0000
From: Suraj Patil <surajpatil522@...il.com>
To: isdn@...ux-pingi.de
Cc: kuba@...nel.org,
	quic_jjohnson@...cinc.com,
	netdev@...r.kernel.org,
	linux-kernel@...r.kernel.org,
	Suraj Patil <surajpatil522@...il.com>
Subject: [PATCH 2/2] isdn: mISDN: Fix typo 'intervall' to 'interval' in hfcsusb.c

Signed-off-by: Suraj Patil <surajpatil522@...il.com>
---
 drivers/isdn/hardware/mISDN/hfcsusb.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/isdn/hardware/mISDN/hfcsusb.c b/drivers/isdn/hardware/mISDN/hfcsusb.c
index e54419a4e731..ebe57c190476 100644
--- a/drivers/isdn/hardware/mISDN/hfcsusb.c
+++ b/drivers/isdn/hardware/mISDN/hfcsusb.c
@@ -1063,7 +1063,7 @@ rx_iso_complete(struct urb *urb)
 
 		fill_isoc_urb(urb, fifo->hw->dev, fifo->pipe,
 			      context_iso_urb->buffer, num_isoc_packets,
-			      fifo->usb_packet_maxlen, fifo->intervall,
+			      fifo->usb_packet_maxlen, fifo->interval,
 			      (usb_complete_t)rx_iso_complete, urb->context);
 		errcode = usb_submit_urb(urb, GFP_ATOMIC);
 		if (errcode < 0) {
@@ -1225,7 +1225,7 @@ tx_iso_complete(struct urb *urb)
 			sink = (threshbit) ? SINK_MIN : SINK_MAX;
 		fill_isoc_urb(urb, fifo->hw->dev, fifo->pipe,
 			      context_iso_urb->buffer, num_isoc_packets,
-			      fifo->usb_packet_maxlen, fifo->intervall,
+			      fifo->usb_packet_maxlen, fifo->interval,
 			      (usb_complete_t)tx_iso_complete, urb->context);
 		memset(context_iso_urb->buffer, 0,
 		       sizeof(context_iso_urb->buffer));
@@ -1355,7 +1355,7 @@ tx_iso_complete(struct urb *urb)
 		/*
 		 * abuse DChannel tx iso completion to trigger NT mode state
 		 * changes tx_iso_complete is assumed to be called every
-		 * fifo->intervall (ms)
+		 * fifo->interval (ms)
 		 */
 		if ((fifon == HFCUSB_D_TX) && (hw->protocol == ISDN_P_NT_S0)
 		    && (hw->timers & NT_ACTIVATION_TIMER)) {
@@ -1411,7 +1411,7 @@ start_isoc_chain(struct usb_fifo *fifo, int num_packets_per_urb,
 					      fifo->iso[i].buffer,
 					      num_packets_per_urb,
 					      fifo->usb_packet_maxlen,
-					      fifo->intervall, complete,
+					      fifo->interval, complete,
 					      &fifo->iso[i]);
 				memset(fifo->iso[i].buffer, 0,
 				       sizeof(fifo->iso[i].buffer));
@@ -1510,7 +1510,7 @@ start_int_fifo(struct usb_fifo *fifo)
 	}
 	usb_fill_int_urb(fifo->urb, fifo->hw->dev, fifo->pipe,
 			 fifo->buffer, fifo->usb_packet_maxlen,
-			 (usb_complete_t)rx_int_complete, fifo, fifo->intervall);
+			 (usb_complete_t)rx_int_complete, fifo, fifo->interval);
 	fifo->active = 1;
 	fifo->stop_gracefull = 0;
 	errcode = usb_submit_urb(fifo->urb, GFP_KERNEL);
@@ -1596,7 +1596,7 @@ reset_hfcsusb(struct hfcsusb *hw)
 	handle_led(hw, LED_POWER_ON);
 }
 
-/* start USB data pipes dependand on device's endpoint configuration */
+/* start USB data pipes dependent on device's endpoint configuration */
 static void
 hfcsusb_start_endpoint(struct hfcsusb *hw, int channel)
 {
@@ -1664,7 +1664,7 @@ hfcsusb_start_endpoint(struct hfcsusb *hw, int channel)
 	}
 }
 
-/* stop USB data pipes dependand on device's endpoint configuration */
+/* stop USB data pipes dependent on device's endpoint configuration */
 static void
 hfcsusb_stop_endpoint(struct hfcsusb *hw, int channel)
 {
@@ -2077,7 +2077,7 @@ hfcsusb_probe(struct usb_interface *intf, const struct usb_device_id *id)
 			f->hw = hw;
 			f->usb_packet_maxlen =
 				le16_to_cpu(ep->desc.wMaxPacketSize);
-			f->intervall = ep->desc.bInterval;
+			f->interval = ep->desc.bInterval;
 		}
 		ep++;
 	}
-- 
2.43.0


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ