mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Silent some debug messages
svn path=/trunk/; revision=15897
This commit is contained in:
parent
925b767f99
commit
ed558f123b
2 changed files with 4 additions and 4 deletions
|
@ -1019,7 +1019,7 @@ static void hub_events(void)
|
||||||
* safe since we delete the hub from the event list.
|
* safe since we delete the hub from the event list.
|
||||||
* Not the most efficient, but avoids deadlocks.
|
* Not the most efficient, but avoids deadlocks.
|
||||||
*/
|
*/
|
||||||
DPRINT1("hub_events() called\n");
|
//DPRINT1("hub_events() called\n");
|
||||||
|
|
||||||
while (m<5) {
|
while (m<5) {
|
||||||
m++;
|
m++;
|
||||||
|
|
|
@ -74,7 +74,7 @@ void init_wrapper(struct pci_dev *probe_dev)
|
||||||
void handle_irqs(int irq)
|
void handle_irqs(int irq)
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
printk("handle irqs\n");
|
//printk("handle irqs\n");
|
||||||
for(n=0;n<MAX_IRQS;n++)
|
for(n=0;n<MAX_IRQS;n++)
|
||||||
{
|
{
|
||||||
if (reg_irqs[n].handler && (irq==reg_irqs[n].irq || irq==-1))
|
if (reg_irqs[n].handler && (irq==reg_irqs[n].irq || irq==-1))
|
||||||
|
@ -100,7 +100,7 @@ void do_all_timers(void)
|
||||||
main_timer_list[n]->expires=0;
|
main_timer_list[n]->expires=0;
|
||||||
|
|
||||||
main_timer_list[n]=NULL; // remove timer
|
main_timer_list[n]=NULL; // remove timer
|
||||||
printk("do timer %i fn %p\n",n,function);
|
//printk("do timer %i fn %p\n",n,function);
|
||||||
|
|
||||||
function(data);
|
function(data);
|
||||||
}
|
}
|
||||||
|
@ -170,7 +170,7 @@ int my_device_add(struct device *dev)
|
||||||
if (m_drivers[n]->probe)
|
if (m_drivers[n]->probe)
|
||||||
{
|
{
|
||||||
dev->driver=m_drivers[n];
|
dev->driver=m_drivers[n];
|
||||||
printk("probe%i %p ",n,m_drivers[n]->probe);
|
printk("probe%i %p\n",n,m_drivers[n]->probe);
|
||||||
|
|
||||||
if (m_drivers[n]->probe(dev) == 0)
|
if (m_drivers[n]->probe(dev) == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue