Commit d816f6b6 authored by Matthias Lange's avatar Matthias Lange Committed by Boris Brezillon

mtd: nand: gpmi: Fix typo in data structure name

This makes it easier to grep.
Signed-off-by: default avatarMatthias Lange <matthias.lange@kernkonzept.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent 3762a33b
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "gpmi-regs.h" #include "gpmi-regs.h"
#include "bch-regs.h" #include "bch-regs.h"
static struct timing_threshod timing_default_threshold = { static struct timing_threshold timing_default_threshold = {
.max_data_setup_cycles = (BM_GPMI_TIMING0_DATA_SETUP >> .max_data_setup_cycles = (BM_GPMI_TIMING0_DATA_SETUP >>
BP_GPMI_TIMING0_DATA_SETUP), BP_GPMI_TIMING0_DATA_SETUP),
.internal_data_setup_in_ns = 0, .internal_data_setup_in_ns = 0,
...@@ -329,7 +329,7 @@ static unsigned int ns_to_cycles(unsigned int time, ...@@ -329,7 +329,7 @@ static unsigned int ns_to_cycles(unsigned int time,
static int gpmi_nfc_compute_hardware_timing(struct gpmi_nand_data *this, static int gpmi_nfc_compute_hardware_timing(struct gpmi_nand_data *this,
struct gpmi_nfc_hardware_timing *hw) struct gpmi_nfc_hardware_timing *hw)
{ {
struct timing_threshod *nfc = &timing_default_threshold; struct timing_threshold *nfc = &timing_default_threshold;
struct resources *r = &this->resources; struct resources *r = &this->resources;
struct nand_chip *nand = &this->nand; struct nand_chip *nand = &this->nand;
struct nand_timing target = this->timing; struct nand_timing target = this->timing;
......
...@@ -234,7 +234,7 @@ struct gpmi_nfc_hardware_timing { ...@@ -234,7 +234,7 @@ struct gpmi_nfc_hardware_timing {
}; };
/** /**
* struct timing_threshod - Timing threshold * struct timing_threshold - Timing threshold
* @max_data_setup_cycles: The maximum number of data setup cycles that * @max_data_setup_cycles: The maximum number of data setup cycles that
* can be expressed in the hardware. * can be expressed in the hardware.
* @internal_data_setup_in_ns: The time, in ns, that the NFC hardware requires * @internal_data_setup_in_ns: The time, in ns, that the NFC hardware requires
...@@ -256,7 +256,7 @@ struct gpmi_nfc_hardware_timing { ...@@ -256,7 +256,7 @@ struct gpmi_nfc_hardware_timing {
* progress, this is the clock frequency during * progress, this is the clock frequency during
* the most recent I/O transaction. * the most recent I/O transaction.
*/ */
struct timing_threshod { struct timing_threshold {
const unsigned int max_chip_count; const unsigned int max_chip_count;
const unsigned int max_data_setup_cycles; const unsigned int max_data_setup_cycles;
const unsigned int internal_data_setup_in_ns; const unsigned int internal_data_setup_in_ns;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment