Changeset 1433ecda in mainline for uspace/drv/intctl/obio/main.c


Ignore:
Timestamp:
2018-04-04T15:42:37Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2c4e1cc
Parents:
47b2d7e3
Message:

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/intctl/obio/main.c

    r47b2d7e3 r1433ecda  
    116116static errno_t obio_dev_remove(ddf_dev_t *dev)
    117117{
    118         obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
     118        obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
    119119
    120         ddf_msg(LVL_DEBUG, "obio_dev_remove(%p)", dev);
     120        ddf_msg(LVL_DEBUG, "obio_dev_remove(%p)", dev);
    121121
    122         return obio_remove(obio);
     122        return obio_remove(obio);
    123123}
    124124
    125125static errno_t obio_dev_gone(ddf_dev_t *dev)
    126126{
    127         obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
     127        obio_t *obio = (obio_t *)ddf_dev_data_get(dev);
    128128
    129         ddf_msg(LVL_DEBUG, "obio_dev_gone(%p)", dev);
     129        ddf_msg(LVL_DEBUG, "obio_dev_gone(%p)", dev);
    130130
    131         return obio_gone(obio);
     131        return obio_gone(obio);
    132132}
    133133
    134134static errno_t obio_fun_online(ddf_fun_t *fun)
    135135{
    136         ddf_msg(LVL_DEBUG, "obio_fun_online()");
    137         return ddf_fun_online(fun);
     136        ddf_msg(LVL_DEBUG, "obio_fun_online()");
     137        return ddf_fun_online(fun);
    138138}
    139139
    140140static errno_t obio_fun_offline(ddf_fun_t *fun)
    141141{
    142         ddf_msg(LVL_DEBUG, "obio_fun_offline()");
    143         return ddf_fun_offline(fun);
     142        ddf_msg(LVL_DEBUG, "obio_fun_offline()");
     143        return ddf_fun_offline(fun);
    144144}
    145145
Note: See TracChangeset for help on using the changeset viewer.