mirror of https://github.com/ipxe/ipxe.git
[crypto] Rename <gpxe/bitops.h> to <gpxe/rotate.h>
parent
9dccbc0af2
commit
521549d900
|
@ -14,7 +14,7 @@
|
|||
#include <ctype.h>
|
||||
#include <assert.h>
|
||||
#include <byteswap.h>
|
||||
#include <gpxe/bitops.h>
|
||||
#include <gpxe/rotate.h>
|
||||
#include <gpxe/crypto.h>
|
||||
|
||||
/* Drag in pscrypto.h */
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef _GPXE_BITOPS_H
|
||||
#define _GPXE_BITOPS_H
|
||||
#ifndef _GPXE_ROTATE_H
|
||||
#define _GPXE_ROTATE_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
|
@ -24,4 +24,4 @@ static inline uint64_t ror64 ( uint64_t data, unsigned int rotation ) {
|
|||
return ( ( data >> rotation ) | ( data << ( 64 - rotation ) ) );
|
||||
}
|
||||
|
||||
#endif /* _GPXE_BITOPS_H */
|
||||
#endif /* _GPXE_ROTATE_H */
|
Loading…
Reference in New Issue