* [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro
@ 2012-03-21 6:23 Nobuhiro Iwamatsu
2012-03-21 7:30 ` Marek Vasut
0 siblings, 1 reply; 4+ messages in thread
From: Nobuhiro Iwamatsu @ 2012-03-21 6:23 UTC (permalink / raw)
To: u-boot
Some variables are initialized with a value defined by macro.
This was changed to use the macro directly. And the variable not to
use deleted it.
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---
drivers/usb/host/r8a66597-hcd.c | 15 +++++----------
1 files changed, 5 insertions(+), 10 deletions(-)
diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c
index ab1b8d0..f5a7e30 100644
--- a/drivers/usb/host/r8a66597-hcd.c
+++ b/drivers/usb/host/r8a66597-hcd.c
@@ -31,9 +31,6 @@
#endif
static const char hcd_name[] = "r8a66597_hcd";
-static unsigned short clock = CONFIG_R8A66597_XTAL;
-static unsigned short vif = CONFIG_R8A66597_LDRV;
-static unsigned short endian = CONFIG_R8A66597_ENDIAN;
static struct r8a66597 gr8a66597;
static void get_hub_data(struct usb_device *dev, u16 *hub_devnum, u16 *hubport)
@@ -96,7 +93,7 @@ static int r8a66597_clock_enable(struct r8a66597 *r8a66597)
}
} while ((tmp & USBE) != USBE);
r8a66597_bclr(r8a66597, USBE, SYSCFG0);
- r8a66597_mdfy(r8a66597, clock, XTAL, SYSCFG0);
+ r8a66597_mdfy(r8a66597, CONFIG_R8A66597_XTAL, XTAL, SYSCFG0);
i = 0;
r8a66597_bset(r8a66597, XCKE, SYSCFG0);
@@ -162,7 +159,7 @@ static int enable_controller(struct r8a66597 *r8a66597)
if (ret < 0)
return ret;
- r8a66597_bset(r8a66597, vif & LDRV, PINCFG);
+ r8a66597_bset(r8a66597, CONFIG_R8A66597_LDRV & LDRV, PINCFG);
r8a66597_bset(r8a66597, USBE, SYSCFG0);
r8a66597_bset(r8a66597, INTL, SOFCFG);
@@ -170,9 +167,9 @@ static int enable_controller(struct r8a66597 *r8a66597)
r8a66597_write(r8a66597, 0, INTENB1);
r8a66597_write(r8a66597, 0, INTENB2);
- r8a66597_bset(r8a66597, endian & BIGEND, CFIFOSEL);
- r8a66597_bset(r8a66597, endian & BIGEND, D0FIFOSEL);
- r8a66597_bset(r8a66597, endian & BIGEND, D1FIFOSEL);
+ r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, CFIFOSEL);
+ r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, D0FIFOSEL);
+ r8a66597_bset(r8a66597, CONFIG_R8A66597_ENDIAN & BIGEND, D1FIFOSEL);
r8a66597_bset(r8a66597, TRNENSEL, SOFCFG);
for (port = 0; port < R8A66597_MAX_ROOT_HUB; port++)
@@ -673,7 +670,6 @@ static int r8a66597_submit_rh_msg(struct usb_device *dev, unsigned long pipe,
int stat = 0;
__u16 bmRType_bReq;
__u16 wValue;
- __u16 wIndex;
__u16 wLength;
unsigned char data[32];
@@ -686,7 +682,6 @@ static int r8a66597_submit_rh_msg(struct usb_device *dev, unsigned long pipe,
bmRType_bReq = cmd->requesttype | (cmd->request << 8);
wValue = cpu_to_le16 (cmd->value);
- wIndex = cpu_to_le16 (cmd->index);
wLength = cpu_to_le16 (cmd->length);
switch (bmRType_bReq) {
--
1.7.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro
2012-03-21 6:23 [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro Nobuhiro Iwamatsu
@ 2012-03-21 7:30 ` Marek Vasut
2012-11-15 6:23 ` Nobuhiro Iwamatsu
0 siblings, 1 reply; 4+ messages in thread
From: Marek Vasut @ 2012-03-21 7:30 UTC (permalink / raw)
To: u-boot
Dear Nobuhiro Iwamatsu,
> Some variables are initialized with a value defined by macro.
> This was changed to use the macro directly. And the variable not to
> use deleted it.
>
> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Adding it to next round of u-boot-usb. I can't promise it'll hit current
release, but I hope it will.
Thanks!
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro
2012-03-21 7:30 ` Marek Vasut
@ 2012-11-15 6:23 ` Nobuhiro Iwamatsu
2012-11-15 13:32 ` Marek Vasut
0 siblings, 1 reply; 4+ messages in thread
From: Nobuhiro Iwamatsu @ 2012-11-15 6:23 UTC (permalink / raw)
To: u-boot
Hi, Marek.
This patch was not picked to your repository yet.
Could you apply?
Best regards,
Nobuhiro
On Wed, Mar 21, 2012 at 4:30 PM, Marek Vasut <marex@denx.de> wrote:
> Dear Nobuhiro Iwamatsu,
>
>> Some variables are initialized with a value defined by macro.
>> This was changed to use the macro directly. And the variable not to
>> use deleted it.
>>
>> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
>
> Adding it to next round of u-boot-usb. I can't promise it'll hit current
> release, but I hope it will.
>
> Thanks!
>
> Best regards,
> Marek Vasut
--
Nobuhiro Iwamatsu
iwamatsu at {nigauri.org / debian.org}
GPG ID: 40AD1FA6
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro
2012-11-15 6:23 ` Nobuhiro Iwamatsu
@ 2012-11-15 13:32 ` Marek Vasut
0 siblings, 0 replies; 4+ messages in thread
From: Marek Vasut @ 2012-11-15 13:32 UTC (permalink / raw)
To: u-boot
Dear Nobuhiro Iwamatsu,
> Hi, Marek.
>
> This patch was not picked to your repository yet.
> Could you apply?
Weird ... applied.
> Best regards,
> Nobuhiro
>
> On Wed, Mar 21, 2012 at 4:30 PM, Marek Vasut <marex@denx.de> wrote:
> > Dear Nobuhiro Iwamatsu,
> >
> >> Some variables are initialized with a value defined by macro.
> >> This was changed to use the macro directly. And the variable not to
> >> use deleted it.
> >>
> >> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
> >
> > Adding it to next round of u-boot-usb. I can't promise it'll hit current
> > release, but I hope it will.
> >
> > Thanks!
> >
> > Best regards,
> > Marek Vasut
Best regards,
Marek Vasut
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-11-15 13:32 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-21 6:23 [U-Boot] [PATCH 2/2] usb: r8a66597: Switched from variable to only macro Nobuhiro Iwamatsu
2012-03-21 7:30 ` Marek Vasut
2012-11-15 6:23 ` Nobuhiro Iwamatsu
2012-11-15 13:32 ` Marek Vasut
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox