Skip to content

docs: Fix a few typos #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion baseboard/kukui/charger_mt6370.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ int command_jc(int argc, char **argv)
DECLARE_CONSOLE_COMMAND(jc, command_jc, "", "mt6370 junction temp");

/*
* b/143318064: A workwround for mt6370 bad buck efficiency.
* b/143318064: A workaround for mt6370 bad buck efficiency.
* If the delta of VBUS and VBAT(on krane, desired voltage 4.4V) is too small
* (i.e. < 500mV), the buck throughput will be bounded, and causing that we
* can't drain 5V/3A when battery SoC above around 40%.
Expand Down
2 changes: 1 addition & 1 deletion board/hatch/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static const mat33_fp_t base_standard_ref = {
/*
* TODO(b/124337208): P0 boards don't have this sensor mounted so the rotation
* matrix can't be tested properly. This needs to be revisited after EVT to make
* sure the rotaiton matrix for the lid sensor is correct.
* sure the rotation matrix for the lid sensor is correct.
*/
static const mat33_fp_t lid_standard_ref = {
{ 0, FLOAT_TO_FP(-1), 0},
Expand Down
2 changes: 1 addition & 1 deletion board/stryke/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ static const mat33_fp_t base_standard_ref = {
/*
* TODO(b/124337208): P0 boards don't have this sensor mounted so the rotation
* matrix can't be tested properly. This needs to be revisited after EVT to make
* sure the rotaiton matrix for the lid sensor is correct.
* sure the rotation matrix for the lid sensor is correct.
*/
static const mat33_fp_t lid_standard_ref = {
{ 0, FLOAT_TO_FP(-1), 0},
Expand Down
2 changes: 1 addition & 1 deletion chip/npcx/system-npcx5.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ void system_download_from_flash(uint32_t srcAddr, uint32_t dstAddr,
ASSERT((size % chunkSize) == 0 && (srcAddr % chunkSize) == 0 &&
(dstAddr % chunkSize) == 0);

/* Check valid address for jumpiing */
/* Check valid address for jumping */
ASSERT(exeAddr != 0x0);

/* Enable power for the Low Power RAM */
Expand Down
2 changes: 1 addition & 1 deletion chip/npcx/system-npcx7.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void system_download_from_flash(uint32_t srcAddr, uint32_t dstAddr,
ASSERT((size % chunkSize) == 0 && (srcAddr % chunkSize) == 0 &&
(dstAddr % chunkSize) == 0);

/* Check valid address for jumpiing */
/* Check valid address for jumping */
ASSERT(exeAddr != 0x0);

/* Enable power for the Low Power RAM */
Expand Down
2 changes: 1 addition & 1 deletion driver/bc12/pi3usb9201.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ static void bc12_power_down(int port)
pi3usb9201_set_mode(port, PI3USB9201_POWER_DOWN);
/* The start bc1.2 bit does not auto clear */
pi3usb9201_bc12_detect_ctrl(port, 0);
/* Mask interrupts unitl next bc1.2 detection event */
/* Mask interrupts until next bc1.2 detection event */
pi3usb9201_interrupt_mask(port, 1);
/*
* Let charge manager know there's no more charge available for the
Expand Down
2 changes: 1 addition & 1 deletion driver/charger/rt946x.h
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ int rt946x_is_charge_done(void);
*/
int rt946x_cutoff_battery(void);

/* Enable/Disable charge temination */
/* Enable/Disable charge termination */
int rt946x_enable_charge_termination(int en);

/* Enable/Disable charge EOC */
Expand Down