1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-21 22:04:19 +03:00
lvm2/lib/mm/xlate.h

18 lines
300 B
C
Raw Normal View History

2001-10-08 09:45:16 +00:00
/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
2002-11-18 14:01:16 +00:00
* This file is released under the GPL.
2001-10-08 09:45:16 +00:00
*
*/
#ifndef _LVM_XLATE_H
#define _LVM_XLATE_H
#include <asm/byteorder.h>
2001-10-08 09:45:16 +00:00
2002-11-18 14:01:16 +00:00
#define xlate16(x) __cpu_to_le16((x))
#define xlate32(x) __cpu_to_le32((x))
#define xlate64(x) __cpu_to_le64((x))
2001-10-08 09:45:16 +00:00
#endif