Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
linux-seco-imx
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Jira
Code
Merge requests
11
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Clea OS
bsp
nxp
linux-seco-imx
Commits
107207aa
Commit
107207aa
authored
19 years ago
by
Linus Torvalds
Browse files
Options
Downloads
Plain Diff
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
parents
403fe5ae
3873658b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
drivers/sbus/char/vfc.h
+0
-2
0 additions, 2 deletions
drivers/sbus/char/vfc.h
drivers/sbus/char/vfc_dev.c
+0
-1
0 additions, 1 deletion
drivers/sbus/char/vfc_dev.c
drivers/sbus/char/vfc_i2c.c
+2
-17
2 additions, 17 deletions
drivers/sbus/char/vfc_i2c.c
with
2 additions
and
20 deletions
drivers/sbus/char/vfc.h
+
0
−
2
View file @
107207aa
...
@@ -129,8 +129,6 @@ struct vfc_dev {
...
@@ -129,8 +129,6 @@ struct vfc_dev {
struct
vfc_regs
*
phys_regs
;
struct
vfc_regs
*
phys_regs
;
unsigned
int
control_reg
;
unsigned
int
control_reg
;
struct
semaphore
device_lock_sem
;
struct
semaphore
device_lock_sem
;
struct
timer_list
poll_timer
;
wait_queue_head_t
poll_wait
;
int
instance
;
int
instance
;
int
busy
;
int
busy
;
unsigned
long
which_io
;
unsigned
long
which_io
;
...
...
This diff is collapsed.
Click to expand it.
drivers/sbus/char/vfc_dev.c
+
0
−
1
View file @
107207aa
...
@@ -137,7 +137,6 @@ int init_vfc_devstruct(struct vfc_dev *dev, int instance)
...
@@ -137,7 +137,6 @@ int init_vfc_devstruct(struct vfc_dev *dev, int instance)
dev
->
instance
=
instance
;
dev
->
instance
=
instance
;
init_MUTEX
(
&
dev
->
device_lock_sem
);
init_MUTEX
(
&
dev
->
device_lock_sem
);
dev
->
control_reg
=
0
;
dev
->
control_reg
=
0
;
init_waitqueue_head
(
&
dev
->
poll_wait
);
dev
->
busy
=
0
;
dev
->
busy
=
0
;
return
0
;
return
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
drivers/sbus/char/vfc_i2c.c
+
2
−
17
View file @
107207aa
...
@@ -79,25 +79,10 @@ int vfc_pcf8584_init(struct vfc_dev *dev)
...
@@ -79,25 +79,10 @@ int vfc_pcf8584_init(struct vfc_dev *dev)
return
0
;
return
0
;
}
}
void
vfc_i2c_delay_wakeup
(
struct
vfc_dev
*
dev
)
{
/* Used to profile code and eliminate too many delays */
VFC_I2C_DEBUG_PRINTK
((
"vfc%d: Delaying
\n
"
,
dev
->
instance
));
wake_up
(
&
dev
->
poll_wait
);
}
void
vfc_i2c_delay_no_busy
(
struct
vfc_dev
*
dev
,
unsigned
long
usecs
)
void
vfc_i2c_delay_no_busy
(
struct
vfc_dev
*
dev
,
unsigned
long
usecs
)
{
{
DEFINE_WAIT
(
wait
);
set_current_state
(
TASK_UNINTERRUPTIBLE
);
init_timer
(
&
dev
->
poll_timer
);
schedule_timeout
(
usecs_to_jiffies
(
usecs
));
dev
->
poll_timer
.
expires
=
jiffies
+
usecs_to_jiffies
(
usecs
);
dev
->
poll_timer
.
data
=
(
unsigned
long
)
dev
;
dev
->
poll_timer
.
function
=
(
void
*
)(
unsigned
long
)
vfc_i2c_delay_wakeup
;
add_timer
(
&
dev
->
poll_timer
);
prepare_to_wait
(
&
dev
->
poll_wait
,
&
wait
,
TASK_UNINTERRUPTIBLE
);
schedule
();
del_timer
(
&
dev
->
poll_timer
);
finish_wait
(
&
dev
->
poll_wait
,
&
wait
);
}
}
void
inline
vfc_i2c_delay
(
struct
vfc_dev
*
dev
)
void
inline
vfc_i2c_delay
(
struct
vfc_dev
*
dev
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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