Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/rootpc/rootpc.c

    r5f0123b r178673c  
    2828
    2929/**
    30  * @defgroup root_pc PC platform driver.
    31  * @brief HelenOS PC platform driver.
     30 * @defgroup root_pc Root HW device driver for ia32 and amd64 platform.
     31 * @brief HelenOS root HW device driver for ia32 and amd64 platform.
    3232 * @{
    3333 */
     
    177177static int rootpc_add_device(device_t *dev)
    178178{
    179         printf(NAME ": rootpc_add_device, device handle = %d\n",
    180             (int)dev->handle);
     179        printf(NAME ": rootpc_add_device, device handle = %d\n", dev->handle);
    181180       
    182181        /* Register child devices. */
    183182        if (!rootpc_add_children(dev)) {
    184                 printf(NAME ": failed to add child devices for PC platform.\n");
     183                printf(NAME ": failed to add child devices for platform "
     184                    "ia32.\n");
    185185        }
    186186       
     
    195195int main(int argc, char *argv[])
    196196{
    197         printf(NAME ": HelenOS PC platform driver\n");
     197        printf(NAME ": HelenOS rootpc device driver\n");
    198198        root_pc_init();
    199199        return driver_main(&rootpc_driver);
Note: See TracChangeset for help on using the changeset viewer.