diff options
author | Mike Isely <isely@pobox.com> | 2006-03-25 16:35:33 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-03-25 16:35:33 -0600 |
commit | 79c5d3b305af947949689365801773a3aaa38eb9 (patch) | |
tree | 541ef54f889ad764e94816efe84e7a72e2aa1f99 /linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c | |
parent | f6b67636456135319f327797d28e8b8e6dd30181 (diff) | |
download | mediapointer-dvb-s2-79c5d3b305af947949689365801773a3aaa38eb9.tar.gz mediapointer-dvb-s2-79c5d3b305af947949689365801773a3aaa38eb9.tar.bz2 |
Tweaks to pvrusb2 init sequence
From: Mike Isely <isely@pobox.com>
Rename a pvrusb2 function to reflect its true meaning, and tweak the
driver initialization sequence so that the I2C adapter isn't started
until after the hardware has been given a powerup command.
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c b/linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c index bcfe468eb..f5c267123 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-debugifc.c @@ -362,7 +362,7 @@ int pvr2_debugifc_do1cmd(struct pvr2_hdw *hdw,const char *buf, } else if (debugifc_match_keyword(wptr,wlen,"bus")) { pvr2_hdw_device_reset(hdw); } else if (debugifc_match_keyword(wptr,wlen,"soft")) { - return pvr2_hdw_cmd_soft_reset(hdw); + return pvr2_hdw_cmd_powerup(hdw); } else if (debugifc_match_keyword(wptr,wlen,"deep")) { return pvr2_hdw_cmd_deep_reset(hdw); } else if (debugifc_match_keyword(wptr,wlen,"firmware")) { |