* [question] between probe() and open()
@ 2012-02-25 22:09 Ezequiel García
0 siblings, 0 replies; only message in thread
From: Ezequiel García @ 2012-02-25 22:09 UTC (permalink / raw)
To: kernelnewbies
Hello,
This is a question in general about usb drivers and
in particular about easycap driver.
Is there any way a driver can be accesed
between after usb_probe() but before device open()?
I guess not, since any further operation on
the device needs a struct file pointer, i.e. a file descriptor on
the user side.
In particular:
easycap driver currently calls reset() on usb_probe(),
reset() does some hardware initialization among other stuff.
However, the reset() is called once again on open().
This seems redundant, right?
The reset() is a heavy function since it access the hardware, so
it would be benefitial to change it,
but I would like someone to ack this, since it is not so trivial.
Some measures on the device shows how heavy the reset() is:
# calling reset() on usb_probe()
time modprobe easycap
real 0m1.516s
user 0m0.000s
sys 0m0.009s
---
# not calling reset() on usb_probe()
time modprobe easycap
real 0m0.003s
user 0m0.000s
sys 0m0.002s
Thanks,
Ezequiel.
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-02-25 22:09 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-25 22:09 [question] between probe() and open() Ezequiel García
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).