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
302683a5
Commit
302683a5
authored
Mar 06, 2005
by
Jeff Garzik
Browse files
Options
Browse Files
Download
Plain Diff
Merge pobox.com:/garz/repo/netdev-2.6/prism54
into pobox.com:/garz/repo/net-drivers-2.6
parents
6b60b23f
ca4e495f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
drivers/net/wireless/prism54/isl_38xx.c
drivers/net/wireless/prism54/isl_38xx.c
+6
-6
No files found.
drivers/net/wireless/prism54/isl_38xx.c
View file @
302683a5
...
...
@@ -125,11 +125,11 @@ isl38xx_trigger_device(int asleep, void __iomem *device_base)
#if VERBOSE > SHOW_ERROR_MESSAGES
do_gettimeofday
(
&
current_time
);
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device wakeup triggered
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
);
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
);
#endif
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device register read %08x
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
,
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
,
readl
(
device_base
+
ISL38XX_CTRL_STAT_REG
));
udelay
(
ISL38XX_WRITEIO_DELAY
);
...
...
@@ -139,7 +139,7 @@ isl38xx_trigger_device(int asleep, void __iomem *device_base)
do_gettimeofday
(
&
current_time
);
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device register abadface
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
);
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
);
#endif
/* read the Device Status Register until Sleepmode bit is set */
while
(
reg
=
readl
(
device_base
+
ISL38XX_CTRL_STAT_REG
),
...
...
@@ -150,7 +150,7 @@ isl38xx_trigger_device(int asleep, void __iomem *device_base)
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device register read %08x
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
,
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
,
readl
(
device_base
+
ISL38XX_CTRL_STAT_REG
));
udelay
(
ISL38XX_WRITEIO_DELAY
);
...
...
@@ -158,7 +158,7 @@ isl38xx_trigger_device(int asleep, void __iomem *device_base)
do_gettimeofday
(
&
current_time
);
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device asleep counter %i
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
,
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
,
counter
);
#endif
}
...
...
@@ -174,7 +174,7 @@ isl38xx_trigger_device(int asleep, void __iomem *device_base)
#if VERBOSE > SHOW_ERROR_MESSAGES
do_gettimeofday
(
&
current_time
);
DEBUG
(
SHOW_TRACING
,
"%08li.%08li Device register read %08x
\n
"
,
current_time
.
tv_sec
,
current_time
.
tv_usec
,
reg
);
current_time
.
tv_sec
,
(
long
)
current_time
.
tv_usec
,
reg
);
#endif
}
else
{
/* device is (still) awake */
...
...
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