Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
e6f81f3c
Commit
e6f81f3c
authored
Jun 04, 2018
by
Vinod Koul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'topic/qcom' into for-linus
parents
4923be7b
6ae7abe3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
MAINTAINERS
MAINTAINERS
+8
-0
drivers/dma/qcom/hidma.c
drivers/dma/qcom/hidma.c
+1
-2
drivers/dma/qcom/hidma_mgmt_sys.c
drivers/dma/qcom/hidma_mgmt_sys.c
+2
-4
No files found.
MAINTAINERS
View file @
e6f81f3c
...
...
@@ -11657,6 +11657,14 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.g
S: Supported
F: arch/hexagon/
QUALCOMM HIDMA DRIVER
M: Sinan Kaya <okaya@codeaurora.org>
L: linux-arm-kernel@lists.infradead.org
L: linux-arm-msm@vger.kernel.org
L: dmaengine@vger.kernel.org
S: Supported
F: drivers/dma/qcom/hidma*
QUALCOMM IOMMU
M: Rob Clark <robdclark@gmail.com>
L: iommu@lists.linux-foundation.org
...
...
drivers/dma/qcom/hidma.c
View file @
e6f81f3c
...
...
@@ -616,8 +616,7 @@ static irqreturn_t hidma_chirq_handler_msi(int chirq, void *arg)
static
ssize_t
hidma_show_values
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
char
*
buf
)
{
struct
platform_device
*
pdev
=
to_platform_device
(
dev
);
struct
hidma_dev
*
mdev
=
platform_get_drvdata
(
pdev
);
struct
hidma_dev
*
mdev
=
dev_get_drvdata
(
dev
);
buf
[
0
]
=
0
;
...
...
drivers/dma/qcom/hidma_mgmt_sys.c
View file @
e6f81f3c
...
...
@@ -107,8 +107,7 @@ static struct hidma_mgmt_fileinfo hidma_mgmt_files[] = {
static
ssize_t
show_values
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
char
*
buf
)
{
struct
platform_device
*
pdev
=
to_platform_device
(
dev
);
struct
hidma_mgmt_dev
*
mdev
=
platform_get_drvdata
(
pdev
);
struct
hidma_mgmt_dev
*
mdev
=
dev_get_drvdata
(
dev
);
unsigned
int
i
;
buf
[
0
]
=
0
;
...
...
@@ -125,8 +124,7 @@ static ssize_t show_values(struct device *dev, struct device_attribute *attr,
static
ssize_t
set_values
(
struct
device
*
dev
,
struct
device_attribute
*
attr
,
const
char
*
buf
,
size_t
count
)
{
struct
platform_device
*
pdev
=
to_platform_device
(
dev
);
struct
hidma_mgmt_dev
*
mdev
=
platform_get_drvdata
(
pdev
);
struct
hidma_mgmt_dev
*
mdev
=
dev_get_drvdata
(
dev
);
unsigned
long
tmp
;
unsigned
int
i
;
int
rc
;
...
...
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