You may want to try putting a call:
WARN_ON(1);
This will give you a stack dump, listing the flow.
(But then, firstly, you have to make sure that the function do get called.)
HTH.
WARN_ON(1);
This will give you a stack dump, listing the flow.
(But then, firstly, you have to make sure that the function do get called.)
HTH.
On Thu, Oct 16, 2008 at 3:10 PM, J. H. Kim <frog1120@xxxxxxxxx> wrote:
Hi, everyone
Reading kernel source code util pci_init(), I did not find which routine calls pci_device_probe().
If anyone knows about that, please let know which routine does call pci_device_probe() function in pci_driver.c and when is the function called?
Thanks in advance.