mirror of
https://github.com/opnsense/src.git
synced 2026-03-29 06:03:14 -04:00
10 lines
210 B
C
10 lines
210 B
C
#ifndef _SPL_PARAM_H
|
|
#define _SPL_PARAM_H
|
|
|
|
#include <asm/page.h>
|
|
|
|
/* Pages to bytes and back */
|
|
#define ptob(pages) (pages << PAGE_SHIFT)
|
|
#define btop(bytes) (bytes >> PAGE_SHIFT)
|
|
|
|
#endif /* SPL_PARAM_H */
|