Ignore:
Timestamp:
2019-06-27T08:51:20Z (7 years ago)
Author:
Jaroslav Jindrak <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
Children:
8add15e0
Parents:
ad40b74b (diff), aeba767 (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:

cpp: merge and resolve conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/drivers/dsrln/dsrlnout.c

    rad40b74b rbc73be3  
    6868};
    6969
    70 outdev_t *dsrlnout_init(ioport8_t *base)
     70outdev_t *dsrlnout_init(ioport8_t *base, uintptr_t base_phys)
    7171{
    7272        outdev_t *dsrlndev = malloc(sizeof(outdev_t));
     
    8585        instance->base = base;
    8686        ddi_parea_init(&instance->parea);
    87         instance->parea.pbase = KA2PA(base);
     87        instance->parea.pbase = base_phys;
    8888        instance->parea.frames = 1;
    8989        instance->parea.unpriv = false;
Note: See TracChangeset for help on using the changeset viewer.