Changeset ae827d0 in mainline for uspace/app/date/date.c


Ignore:
Timestamp:
2012-08-23T14:28:14Z (13 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5572ad1
Parents:
9673fd3
Message:

rtc: make the driver - port IO / memory mapped IO - neutral.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/date/date.c

    r9673fd3 rae827d0  
    111111        rc = loc_category_get_svcs(cat_id, &svc_ids, &svc_cnt);
    112112        if (rc != EOK) {
    113                 printf(NAME ": Cannot get the list of services in the clock \
    114                     category\n");
     113                printf(NAME ": Cannot get the list of services in the clock "
     114                    "category\n");
    115115                goto exit;
    116116        }
     
    118118        /* Check if there are available services in the clock category */
    119119        if (svc_cnt == 0) {
    120                 printf(NAME ": No available service found in \
    121                     the clock category\n");
     120                printf(NAME ": No available service found in "
     121                    "the clock category\n");
    122122                goto exit;
    123123        }
Note: See TracChangeset for help on using the changeset viewer.