Changeset 1cf2df40 in rtems


Ignore:
Timestamp:
09/23/98 13:25:37 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5d17a64
Parents:
479c86dd
Message:

Removed printk() references.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/i386/i386ex/clock/ckinit.c

    r479c86dd r1cf2df40  
    8484                                              ClockIsOn};
    8585
     86
    8687rtems_device_driver Clock_initialize(
    8788  rtems_device_major_number major,
     
    9596  Clock_driver_ticks = 0;
    9697
    97   Clock_isrs = Clock_initial_isr_value = BSP_Configuration.microseconds_per_tick / 1000; /* ticks per clock_isr */
     98  Clock_isrs =
     99    Clock_initial_isr_value =
     100    BSP_Configuration.microseconds_per_tick / 1000; /* ticks per clock_isr */
    98101 
    99102  /*
     
    107110  clock_lsb = (unsigned char)timer_counter_init_value;
    108111  clock_msb = timer_counter_init_value >> 8;
    109 
    110   printk("timer_counter_init_value = 0x%x, lsb = 0x%x, msb = 0x%x, Clock_isrs = %d\n",timer_counter_init_value,
    111          clock_lsb, clock_msb, Clock_isrs);
    112112 
    113113  outport_byte  ( TMRCON , 0x34 );
Note: See TracChangeset for help on using the changeset viewer.