Changeset f480d7e in mainline for uspace/drv/bus


Ignore:
Timestamp:
2011-09-02T22:03:55Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f278930
Parents:
a1b7e80 (diff), 5b68e0c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge ns8250 removal support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/isa/isa.c

    ra1b7e80 rf480d7e  
    9696
    9797static int isa_add_device(ddf_dev_t *dev);
     98static int isa_fun_online(ddf_fun_t *fun);
     99static int isa_fun_offline(ddf_fun_t *fun);
    98100
    99101/** The isa device driver's standard operations */
    100102static driver_ops_t isa_ops = {
    101         .add_device = &isa_add_device
     103        .add_device = &isa_add_device,
     104        .fun_online = &isa_fun_online,
     105        .fun_offline = &isa_fun_offline
    102106};
    103107
     
    495499}
    496500
     501static int isa_fun_online(ddf_fun_t *fun)
     502{
     503        ddf_msg(LVL_DEBUG, "isa_fun_online()");
     504        return ddf_fun_online(fun);
     505}
     506
     507static int isa_fun_offline(ddf_fun_t *fun)
     508{
     509        ddf_msg(LVL_DEBUG, "isa_fun_offline()");
     510        return ddf_fun_offline(fun);
     511}
     512
     513
    497514static void isa_init()
    498515{
Note: See TracChangeset for help on using the changeset viewer.