david/ipxe
Archived
1
0

[crypto] Rename <gpxe/bitops.h> to <gpxe/rotate.h>

This commit is contained in:
Michael Brown 2008-09-30 01:20:04 +01:00
parent 9dccbc0af2
commit 521549d900
2 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
#include <ctype.h> #include <ctype.h>
#include <assert.h> #include <assert.h>
#include <byteswap.h> #include <byteswap.h>
#include <gpxe/bitops.h> #include <gpxe/rotate.h>
#include <gpxe/crypto.h> #include <gpxe/crypto.h>
/* Drag in pscrypto.h */ /* Drag in pscrypto.h */

View File

@ -1,5 +1,5 @@
#ifndef _GPXE_BITOPS_H #ifndef _GPXE_ROTATE_H
#define _GPXE_BITOPS_H #define _GPXE_ROTATE_H
/** @file /** @file
* *
@ -24,4 +24,4 @@ static inline uint64_t ror64 ( uint64_t data, unsigned int rotation ) {
return ( ( data >> rotation ) | ( data << ( 64 - rotation ) ) ); return ( ( data >> rotation ) | ( data << ( 64 - rotation ) ) );
} }
#endif /* _GPXE_BITOPS_H */ #endif /* _GPXE_ROTATE_H */