Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
openvox-dahdi
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
Raptor Engineering Public Development
openvox-dahdi
Commits
be4af776
Commit
be4af776
authored
Mar 22, 2022
by
Raptor Engineering Development Team
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check for frozen PHB if register read returns all 1s
parent
10a634b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
drivers/dahdi/opvxa24xx/private.c
drivers/dahdi/opvxa24xx/private.c
+7
-0
No files found.
drivers/dahdi/opvxa24xx/private.c
View file @
be4af776
...
...
@@ -127,6 +127,13 @@ unsigned int __opvx_a24xx_getcreg(struct a24xx_dev *wc, unsigned int offset, uns
//printk("reding offset %d, reg %d at %d\n", offset, reg, offset + (reg<<2));
volatile
unsigned
int
*
p
=
(
unsigned
int
*
)(
wc
->
mem32
+
offset
+
(
reg
<<
2
));
#ifdef CONFIG_EEH
if
(
unlikely
((
*
p
)
==
~
((
unsigned
int
)
0
)))
{
struct
eeh_dev
*
eehdev
=
pci_dev_to_eeh_dev
(
wc
->
dev
);
eeh_dev_check_failure
(
eehdev
);
}
#endif
return
(
*
p
);
}
...
...
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