Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
e3a251de
Commit
e3a251de
authored
Oct 27, 2005
by
Kyungmin Park
Committed by
Tony Lindgren
Oct 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: OMAP: [PATCH] fixed dma BURST_4 value
The BURST_4 is 2 instead of 1
parent
dcd96ceb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
arch/arm/plat-omap/dma.c
arch/arm/plat-omap/dma.c
+2
-2
No files found.
arch/arm/plat-omap/dma.c
View file @
e3a251de
...
@@ -221,7 +221,7 @@ void omap_set_dma_src_burst_mode(int lch, enum omap_dma_burst_mode burst_mode)
...
@@ -221,7 +221,7 @@ void omap_set_dma_src_burst_mode(int lch, enum omap_dma_burst_mode burst_mode)
case
OMAP_DMA_DATA_BURST_DIS
:
case
OMAP_DMA_DATA_BURST_DIS
:
break
;
break
;
case
OMAP_DMA_DATA_BURST_4
:
case
OMAP_DMA_DATA_BURST_4
:
w
|=
(
0x0
1
<<
7
);
w
|=
(
0x0
2
<<
7
);
break
;
break
;
case
OMAP_DMA_DATA_BURST_8
:
case
OMAP_DMA_DATA_BURST_8
:
/* not supported by current hardware
/* not supported by current hardware
...
@@ -277,7 +277,7 @@ void omap_set_dma_dest_burst_mode(int lch, enum omap_dma_burst_mode burst_mode)
...
@@ -277,7 +277,7 @@ void omap_set_dma_dest_burst_mode(int lch, enum omap_dma_burst_mode burst_mode)
case
OMAP_DMA_DATA_BURST_DIS
:
case
OMAP_DMA_DATA_BURST_DIS
:
break
;
break
;
case
OMAP_DMA_DATA_BURST_4
:
case
OMAP_DMA_DATA_BURST_4
:
w
|=
(
0x0
1
<<
14
);
w
|=
(
0x0
2
<<
14
);
break
;
break
;
case
OMAP_DMA_DATA_BURST_8
:
case
OMAP_DMA_DATA_BURST_8
:
w
|=
(
0x03
<<
14
);
w
|=
(
0x03
<<
14
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment