samples: drivers: eeprom: fix spelling

Fix spelling in the EEPROM driver sample application.

Signed-off-by: Henrik Brix Andersen <hebad@vestas.com>
This commit is contained in:
Henrik Brix Andersen 2022-03-08 09:42:14 +01:00 committed by Carles Cufí
commit 4828fa0649

View file

@ -9,8 +9,8 @@
#include <drivers/eeprom.h> #include <drivers/eeprom.h>
#include <device.h> #include <device.h>
#define EERPOM_SAMPLE_OFFSET 0 #define EEPROM_SAMPLE_OFFSET 0
#define EERPOM_SAMPLE_MAGIC 0xEE9703 #define EEPROM_SAMPLE_MAGIC 0xEE9703
struct perisistant_values { struct perisistant_values {
uint32_t magic; uint32_t magic;
@ -49,21 +49,21 @@ void main(void)
eeprom_size = eeprom_get_size(eeprom); eeprom_size = eeprom_get_size(eeprom);
printk("Using eeprom with size of: %d.\n", eeprom_size); printk("Using eeprom with size of: %d.\n", eeprom_size);
rc = eeprom_read(eeprom, EERPOM_SAMPLE_OFFSET, &values, sizeof(values)); rc = eeprom_read(eeprom, EEPROM_SAMPLE_OFFSET, &values, sizeof(values));
if (rc < 0) { if (rc < 0) {
printk("Error: Couldn't read eeprom: err: %d.\n", rc); printk("Error: Couldn't read eeprom: err: %d.\n", rc);
return; return;
} }
if (values.magic != EERPOM_SAMPLE_MAGIC) { if (values.magic != EEPROM_SAMPLE_MAGIC) {
values.magic = EERPOM_SAMPLE_MAGIC; values.magic = EEPROM_SAMPLE_MAGIC;
values.boot_count = 0; values.boot_count = 0;
} }
values.boot_count++; values.boot_count++;
printk("Device booted %d times.\n", values.boot_count); printk("Device booted %d times.\n", values.boot_count);
rc = eeprom_write(eeprom, EERPOM_SAMPLE_OFFSET, &values, sizeof(values)); rc = eeprom_write(eeprom, EEPROM_SAMPLE_OFFSET, &values, sizeof(values));
if (rc < 0) { if (rc < 0) {
printk("Error: Couldn't write eeprom: err:%d.\n", rc); printk("Error: Couldn't write eeprom: err:%d.\n", rc);
return; return;