Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rk3576 Downstream U-Boot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Frattaroli
Rk3576 Downstream U-Boot
Commits
9d8811c5
Commit
9d8811c5
authored
16 years ago
by
Wolfgang Denk
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-usb
parents
716ebf43
bd99ec14
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/usb/usb_ehci_vct.c
+58
-0
58 additions, 0 deletions
drivers/usb/usb_ehci_vct.c
include/onenand_uboot.h
+2
-0
2 additions, 0 deletions
include/onenand_uboot.h
with
60 additions
and
0 deletions
drivers/usb/usb_ehci_vct.c
0 → 100644
+
58
−
0
View file @
9d8811c5
/*
* (C) Copyright 2009 Stefan Roese <sr@denx.de>, DENX Software Engineering
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include
<common.h>
#include
<usb.h>
#include
"usb_ehci.h"
#include
"usb_ehci_core.h"
int
vct_ehci_hcd_init
(
u32
*
hccr
,
u32
*
hcor
);
/*
* Create the appropriate control structures to manage
* a new EHCI host controller.
*/
int
ehci_hcd_init
(
void
)
{
int
ret
;
u32
vct_hccr
;
u32
vct_hcor
;
/*
* Init VCT specific stuff
*/
ret
=
vct_ehci_hcd_init
(
&
vct_hccr
,
&
vct_hcor
);
if
(
ret
)
return
ret
;
hccr
=
(
struct
ehci_hccr
*
)
vct_hccr
;
hcor
=
(
struct
ehci_hcor
*
)
vct_hcor
;
return
0
;
}
/*
* Destroy the appropriate control structures corresponding
* the the EHCI host controller.
*/
int
ehci_hcd_stop
(
void
)
{
return
0
;
}
This diff is collapsed.
Click to expand it.
include/onenand_uboot.h
+
2
−
0
View file @
9d8811c5
...
...
@@ -16,7 +16,9 @@
#include
<linux/types.h>
/* Forward declarations */
struct
mtd_info
;
struct
mtd_oob_ops
;
struct
erase_info
;
struct
onenand_chip
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment