Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/ddi/ddi.h

    rd7533c7 r77429d3  
    4343/** Structure representing contiguous physical memory area. */
    4444typedef struct {
    45         link_t link;      /**< Linked list link */
     45        uintptr_t pbase;    /**< Physical base of the area. */
     46        pfn_t frames;       /**< Number of frames in the area. */
    4647       
    47         uintptr_t pbase;  /**< Physical base of the area. */
    48         pfn_t frames;     /**< Number of frames in the area. */
    49         bool unpriv;      /**< Allow mapping by unprivileged tasks. */
     48        link_t link;        /**< Linked list link */
    5049} parea_t;
    5150
     
    6160extern int ddi_iospace_enable_arch(task_t *, uintptr_t, size_t);
    6261
     62
    6363#endif
    6464
Note: See TracChangeset for help on using the changeset viewer.