diff options
| author | Michael Brown | 2008-09-30 02:20:04 +0200 |
|---|---|---|
| committer | Michael Brown | 2008-10-01 20:24:56 +0200 |
| commit | 521549d90076b0745eef85e5ab37047658b73b96 (patch) | |
| tree | 5c266113a3830f1a5e7bb0b027dcf253476ee8ba /src/include | |
| parent | [i2c] Generalise i2c bit-bashing support to addressless devices (diff) | |
| download | ipxe-521549d90076b0745eef85e5ab37047658b73b96.tar.gz ipxe-521549d90076b0745eef85e5ab37047658b73b96.tar.xz ipxe-521549d90076b0745eef85e5ab37047658b73b96.zip | |
[crypto] Rename <gpxe/bitops.h> to <gpxe/rotate.h>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/gpxe/rotate.h (renamed from src/include/gpxe/bitops.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gpxe/bitops.h b/src/include/gpxe/rotate.h index f95af7d3f..42ec7196f 100644 --- a/src/include/gpxe/bitops.h +++ b/src/include/gpxe/rotate.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 */ |
