* [PATCH] Update ohci-omap to compile
@ 2004-02-04 20:46 Tony Lindgren
2004-02-05 1:14 ` Greg KH
0 siblings, 1 reply; 2+ messages in thread
From: Tony Lindgren @ 2004-02-04 20:46 UTC (permalink / raw)
To: linux-kernel; +Cc: greg
[-- Attachment #1: Type: text/plain, Size: 300 bytes --]
Hi Greg,
Following is a trivial patch to update the ohci-omap.c in 2.6.2 to be in
sync with the OMAP tree. Basically the IRQ name was changed, which keeps
the driver from compiling.
It also includes a cosmetic change to replace inl/outl with readl/writel.
Can you please apply?
Regards,
Tony
[-- Attachment #2: patch-2.6.2-ohci-omap-update --]
[-- Type: text/plain, Size: 2107 bytes --]
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1551 -> 1.1552
# drivers/usb/host/ohci-omap.c 1.1 -> 1.2
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 04/02/04 tmlind@kaakku.muru.com 1.1552
# Patch to update the mainline ohci-omap.c with the current version
# - Changed irq name from INT_OHCI to INT_USB_HHC_1
# - Cosmetic fix to replace inl/outl with readl/writel
# --------------------------------------------
#
diff -Nru a/drivers/usb/host/ohci-omap.c b/drivers/usb/host/ohci-omap.c
--- a/drivers/usb/host/ohci-omap.c Wed Feb 4 12:34:34 2004
+++ b/drivers/usb/host/ohci-omap.c Wed Feb 4 12:34:34 2004
@@ -134,7 +134,7 @@
writel(readl(ULPD_SOFT_REQ_REG) | SOFT_USB_REQ,
ULPD_SOFT_REQ_REG);
- outl(inl(ULPD_STATUS_REQ_REG) | USB_HOST_DPLL_REQ,
+ writel(readl(ULPD_STATUS_REQ_REG) | USB_HOST_DPLL_REQ,
ULPD_STATUS_REQ_REG);
}
@@ -248,7 +248,7 @@
val |= (1 << 2); /* Disable pulldown on integrated transceiver DM */
val |= (1 << 1); /* Disable pulldown on integraded transceiver DP */
- outl(val, USB_TRANSCEIVER_CTRL);
+ writel(val, USB_TRANSCEIVER_CTRL);
/* Set the USB0_TRX_MODE */
val = 0;
@@ -256,7 +256,7 @@
val &= ~DEV_IDLE_EN;
val &= ~(7 << 16); /* Clear USB0_TRX_MODE */
val |= (3 << 16); /* 0 or 3, 6-wire DAT/SE0, TRM p 15-159 */
- outl(val, OTG_SYSCON_1);
+ writel(val, OTG_SYSCON_1);
/*
* Control via OTG, see TRM p 15-163
@@ -275,10 +275,10 @@
val |= (4 << 16); /* Must be 4 */
val |= USBX_SYNCHRO; /* Must be set */
val |= SRP_VBUS;
- outl(val, OTG_SYSCON_2);
+ writel(val, OTG_SYSCON_2);
/* Enable OTG idle */
- //outl(inl(OTG_SYSCON_1) | OTG_IDLE_EN, OTG_SYSCON_1);
+ //writel(readl(OTG_SYSCON_1) | OTG_IDLE_EN, OTG_SYSCON_1);
return 0;
}
@@ -631,7 +631,7 @@
.end = OMAP_OHCI_BASE + OMAP_OHCI_SIZE,
},
.irq = {
- INT_OHCI,
+ INT_USB_HHC_1,
},
};
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] Update ohci-omap to compile
2004-02-04 20:46 [PATCH] Update ohci-omap to compile Tony Lindgren
@ 2004-02-05 1:14 ` Greg KH
0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2004-02-05 1:14 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-kernel
On Wed, Feb 04, 2004 at 12:46:01PM -0800, Tony Lindgren wrote:
> Hi Greg,
>
> Following is a trivial patch to update the ohci-omap.c in 2.6.2 to be in
> sync with the OMAP tree. Basically the IRQ name was changed, which keeps
> the driver from compiling.
>
> It also includes a cosmetic change to replace inl/outl with readl/writel.
> Can you please apply?
Applied, thanks,
greg k-h
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-02-05 1:25 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-04 20:46 [PATCH] Update ohci-omap to compile Tony Lindgren
2004-02-05 1:14 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox