Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4b512d26 authored by Thadeu Lima de Souza Cascardo's avatar Thadeu Lima de Souza Cascardo Committed by Jiri Kosina
Browse files

trivial: typo (en|dis|avail|remove)bale -> (en|dis|avail|remove)able

parent 0b1b51f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -779,7 +779,7 @@ static void change_speed(struct async_struct *info,
		info->IER |= UART_IER_MSI;
		info->IER |= UART_IER_MSI;
	}
	}
	/* TBD:
	/* TBD:
	 * Does clearing IER_MSI imply that we should disbale the VBL interrupt ?
	 * Does clearing IER_MSI imply that we should disable the VBL interrupt ?
	 */
	 */


	/*
	/*
+1 −1
Original line number Original line Diff line number Diff line
@@ -181,7 +181,7 @@ static int hdpvr_submit_buffers(struct hdpvr_device *dev)
				 buff_list);
				 buff_list);
		if (buf->status != BUFSTAT_AVAILABLE) {
		if (buf->status != BUFSTAT_AVAILABLE) {
			v4l2_err(&dev->v4l2_dev,
			v4l2_err(&dev->v4l2_dev,
				 "buffer not marked as availbale\n");
				 "buffer not marked as available\n");
			ret = -EFAULT;
			ret = -EFAULT;
			goto err;
			goto err;
		}
		}
+1 −1
Original line number Original line Diff line number Diff line
@@ -97,7 +97,7 @@
#define B44_DMARX_STAT	0x021CUL /* DMA RX Current Active Desc. + Status */
#define B44_DMARX_STAT	0x021CUL /* DMA RX Current Active Desc. + Status */
#define  DMARX_STAT_CDMASK	0x00000fff /* Current Descriptor Mask */
#define  DMARX_STAT_CDMASK	0x00000fff /* Current Descriptor Mask */
#define  DMARX_STAT_SMASK	0x0000f000 /* State Mask */
#define  DMARX_STAT_SMASK	0x0000f000 /* State Mask */
#define  DMARX_STAT_SDISABLED	0x00000000 /* State Disbaled */
#define  DMARX_STAT_SDISABLED	0x00000000 /* State Disabled */
#define  DMARX_STAT_SACTIVE	0x00001000 /* State Active */
#define  DMARX_STAT_SACTIVE	0x00001000 /* State Active */
#define  DMARX_STAT_SIDLE	0x00002000 /* State Idle Wait */
#define  DMARX_STAT_SIDLE	0x00002000 /* State Idle Wait */
#define  DMARX_STAT_SSTOPPED	0x00003000 /* State Stopped */
#define  DMARX_STAT_SSTOPPED	0x00003000 /* State Stopped */
+1 −1
Original line number Original line Diff line number Diff line
@@ -2785,7 +2785,7 @@ static int e100_resume(struct pci_dev *pdev)
	/* ack any pending wake events, disable PME */
	/* ack any pending wake events, disable PME */
	pci_enable_wake(pdev, 0, 0);
	pci_enable_wake(pdev, 0, 0);


	/* disbale reverse auto-negotiation */
	/* disable reverse auto-negotiation */
	if (nic->phy == phy_82552_v) {
	if (nic->phy == phy_82552_v) {
		u16 smartspeed = mdio_read(netdev, nic->mii.phy_id,
		u16 smartspeed = mdio_read(netdev, nic->mii.phy_id,
		                           E100_82552_SMARTSPEED);
		                           E100_82552_SMARTSPEED);
+2 −2
Original line number Original line Diff line number Diff line
@@ -3242,8 +3242,8 @@ struct niu {
	struct niu_parent		*parent;
	struct niu_parent		*parent;


	u32				flags;
	u32				flags;
#define NIU_FLAGS_HOTPLUG_PHY_PRESENT	0x02000000 /* Removebale PHY detected*/
#define NIU_FLAGS_HOTPLUG_PHY_PRESENT	0x02000000 /* Removeable PHY detected*/
#define NIU_FLAGS_HOTPLUG_PHY		0x01000000 /* Removebale PHY */
#define NIU_FLAGS_HOTPLUG_PHY		0x01000000 /* Removeable PHY */
#define NIU_FLAGS_VPD_VALID		0x00800000 /* VPD has valid version */
#define NIU_FLAGS_VPD_VALID		0x00800000 /* VPD has valid version */
#define NIU_FLAGS_MSIX			0x00400000 /* MSI-X in use */
#define NIU_FLAGS_MSIX			0x00400000 /* MSI-X in use */
#define NIU_FLAGS_MCAST			0x00200000 /* multicast filter enabled */
#define NIU_FLAGS_MCAST			0x00200000 /* multicast filter enabled */
Loading