chacha20poly1305: fix style nits in variable names

Change-Id: I3ac9dc7bf1c1c6ff39b3385cbf965dfb57f8327a
Reviewed-on: https://go-review.googlesource.com/43511
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Han-Wen Nienhuys 2017-05-16 13:44:04 +02:00 коммит произвёл Brad Fitzpatrick
Родитель ab89591268
Коммит 0fe963104e
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -26,15 +26,15 @@ var (
)
func init() {
detectCpuFeatures()
detectCPUFeatures()
}
// detectCpuFeatures is used to detect if cpu instructions
// detectCPUFeatures is used to detect if cpu instructions
// used by the functions implemented in assembler in
// chacha20poly1305_amd64.s are supported.
func detectCpuFeatures() {
maxId, _, _, _ := cpuid(0, 0)
if maxId < 1 {
func detectCPUFeatures() {
maxID, _, _, _ := cpuid(0, 0)
if maxID < 1 {
return
}
@ -54,7 +54,7 @@ func detectCpuFeatures() {
}
haveAVX := isSet(28, ecx1) && osSupportsAVX
if maxId < 7 {
if maxID < 7 {
return
}