Quellcode durchsuchen

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

tags/v0.9.6
Michael Brown vor 15 Jahren
Ursprung
Commit
521549d900
2 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  1. 1
    1
      src/crypto/cryptoLayer.h
  2. 3
    3
      src/include/gpxe/rotate.h

+ 1
- 1
src/crypto/cryptoLayer.h Datei anzeigen

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

src/include/gpxe/bitops.h → src/include/gpxe/rotate.h Datei anzeigen

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

Laden…
Abbrechen
Speichern