Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
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
Commits
f33afc26
Commit
f33afc26
authored
Feb 04, 2008
by
Roland Dreier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IB: Avoid marking __devinitdata as const
Signed-off-by:
Roland Dreier
<
rolandd@cisco.com
>
parent
68f3948d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
drivers/infiniband/hw/mthca/mthca_main.c
drivers/infiniband/hw/mthca/mthca_main.c
+1
-1
drivers/net/mlx4/main.c
drivers/net/mlx4/main.c
+1
-1
No files found.
drivers/infiniband/hw/mthca/mthca_main.c
View file @
f33afc26
...
...
@@ -126,7 +126,7 @@ module_param_named(fmr_reserved_mtts, hca_profile.fmr_reserved_mtts, int, 0444);
MODULE_PARM_DESC
(
fmr_reserved_mtts
,
"number of memory translation table segments reserved for FMR"
);
static
c
onst
c
har
mthca_version
[]
__devinitdata
=
static
char
mthca_version
[]
__devinitdata
=
DRV_NAME
": Mellanox InfiniBand HCA driver v"
DRV_VERSION
" ("
DRV_RELDATE
")
\n
"
;
...
...
drivers/net/mlx4/main.c
View file @
f33afc26
...
...
@@ -71,7 +71,7 @@ MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero");
#endif
/* CONFIG_PCI_MSI */
static
c
onst
c
har
mlx4_version
[]
__devinitdata
=
static
char
mlx4_version
[]
__devinitdata
=
DRV_NAME
": Mellanox ConnectX core driver v"
DRV_VERSION
" ("
DRV_RELDATE
")
\n
"
;
...
...
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