Spelling in comment
This commit is contained in:
parent
f734fe00ce
commit
4db03d42c9
@ -1,4 +1,4 @@
|
||||
/* $Id: power_prep.c,v 1.4 2013/10/07 17:36:40 matt Exp $ */
|
||||
/* $Id: power_prep.c,v 1.5 2016/08/17 22:04:51 skrll Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2012 The NetBSD Foundation, Inc.
|
||||
@ -222,7 +222,7 @@ power_vddd_from_dcdc(int target, int brownout)
|
||||
{
|
||||
uint32_t tmp_r;
|
||||
|
||||
/* BO_OFFSET must be withing 800mV - 1475mV */
|
||||
/* BO_OFFSET must be within 800mV - 1475mV */
|
||||
if (brownout > 1475)
|
||||
brownout = 1475;
|
||||
else if (brownout < 800)
|
||||
@ -274,7 +274,7 @@ power_vdda_from_dcdc(int target, int brownout)
|
||||
{
|
||||
uint32_t tmp_r;
|
||||
|
||||
/* BO_OFFSET must be withing 1400mV - 2175mV */
|
||||
/* BO_OFFSET must be within 1400mV - 2175mV */
|
||||
if (brownout > 2275)
|
||||
brownout = 2275;
|
||||
else if (brownout < 1400)
|
||||
@ -326,7 +326,7 @@ power_vddio_from_dcdc(int target, int brownout)
|
||||
{
|
||||
uint32_t tmp_r;
|
||||
|
||||
/* BO_OFFSET must be withing 2700mV - 3475mV */
|
||||
/* BO_OFFSET must be within 2700mV - 3475mV */
|
||||
if (brownout > 3475)
|
||||
brownout = 3475;
|
||||
else if (brownout < 2700)
|
||||
|
Loading…
Reference in New Issue
Block a user