Commit 0bfa4df2 authored by Artem Bityutskiy's avatar Artem Bityutskiy Committed by David Woodhouse

mtd: nandsim: make some structures anonymous

We do not need these names. Moreover, there are spelling typos
there: "nansin" instead of "nandsim".

This patch is just a clean up, no functional changes.
Reported-by: default avatarFerenc Wagner <wferi@niif.hu>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 0a382a74
...@@ -315,7 +315,7 @@ struct nandsim { ...@@ -315,7 +315,7 @@ struct nandsim {
union ns_mem buf; union ns_mem buf;
/* NAND flash "geometry" */ /* NAND flash "geometry" */
struct nandsin_geometry { struct {
uint64_t totsz; /* total flash size, bytes */ uint64_t totsz; /* total flash size, bytes */
uint32_t secsz; /* flash sector (erase block) size, bytes */ uint32_t secsz; /* flash sector (erase block) size, bytes */
uint pgsz; /* NAND flash page size, bytes */ uint pgsz; /* NAND flash page size, bytes */
...@@ -334,7 +334,7 @@ struct nandsim { ...@@ -334,7 +334,7 @@ struct nandsim {
} geom; } geom;
/* NAND flash internal registers */ /* NAND flash internal registers */
struct nandsim_regs { struct {
unsigned command; /* the command register */ unsigned command; /* the command register */
u_char status; /* the status register */ u_char status; /* the status register */
uint row; /* the page number */ uint row; /* the page number */
...@@ -345,7 +345,7 @@ struct nandsim { ...@@ -345,7 +345,7 @@ struct nandsim {
} regs; } regs;
/* NAND flash lines state */ /* NAND flash lines state */
struct ns_lines_status { struct {
int ce; /* chip Enable */ int ce; /* chip Enable */
int cle; /* command Latch Enable */ int cle; /* command Latch Enable */
int ale; /* address Latch Enable */ int ale; /* address Latch Enable */
......
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