Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/generic/include/align.h

    r9d58539 r84176f3  
    4949#define ALIGN_UP(s, a)  (((s) + ((a) - 1)) & ~((a) - 1))
    5050
     51/** Check alignment.
     52 *
     53 * @param s Address or size to be checked for alignment.
     54 * @param a Size of alignment, must be a power of 2.
     55 */
     56#define IS_ALIGNED(s, a)  (ALIGN_UP((s), (a)) == (s))
     57
    5158#endif
    5259
Note: See TracChangeset for help on using the changeset viewer.