Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FPGA Configuration Space
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
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
Projects
FPGA Configuration Space
Commits
7401c3f7
Commit
7401c3f7
authored
11 months ago
by
A. Hahn
Browse files
Options
Downloads
Patches
Plain Diff
wishbone: add kernel >= 6.4.0 support
parent
3ccd8975
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pcie-wb/wishbone.c
+4
-0
4 additions, 0 deletions
pcie-wb/wishbone.c
with
4 additions
and
0 deletions
pcie-wb/wishbone.c
+
4
−
0
View file @
7401c3f7
...
...
@@ -807,7 +807,11 @@ static int __init wishbone_init(void)
goto
fail_last
;
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(6,4,0)
wishbone_master_class
=
class_create
(
THIS_MODULE
,
"wbm"
);
#else
wishbone_master_class
=
class_create
(
"wbm"
);
#endif
if
(
IS_ERR
(
wishbone_master_class
))
{
err
=
PTR_ERR
(
wishbone_master_class
);
goto
fail_last
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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