Changeset 904b1bc in mainline for kernel/generic/include/ddi/ddi.h


Ignore:
Timestamp:
2018-05-22T10:36:58Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a4eb3ba2
Parents:
4f8772d4
git-author:
Jiri Svoboda <jiri@…> (2018-05-21 17:36:30)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-22 10:36:58)
Message:

Fix remaining ccheck issues.

File:
1 edited

Legend:

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

    r4f8772d4 r904b1bc  
    4343/** Structure representing contiguous physical memory area. */
    4444typedef struct {
    45         link_t link;      /**< Linked list link */
     45        /** Linked list link */
     46        link_t link;
    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. */
    50         bool mapped;      /**< Indicate whether the area is actually
    51                                mapped. */
     48        /** Physical base of the area. */
     49        uintptr_t pbase;
     50        /** Number of frames in the area. */
     51        pfn_t frames;
     52        /** Allow mapping by unprivileged tasks. */
     53        bool unpriv;
     54        /** Indicate whether the area is actually mapped. */
     55        bool mapped;
    5256} parea_t;
    5357
Note: See TracChangeset for help on using the changeset viewer.