mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-24 06:24:17 +00:00
Fix misc spelling errors found by lintian
Signed-off-by: Loc Minier <loic.minier@linaro.org>
This commit is contained in:
parent
f039ada5c1
commit
6052cbab40
8 changed files with 10 additions and 10 deletions
|
@ -39,7 +39,7 @@ typedef struct {
|
||||||
#define RBF_MULTICAST (1<<30)
|
#define RBF_MULTICAST (1<<30)
|
||||||
#define RBF_UNICAST (1<<29)
|
#define RBF_UNICAST (1<<29)
|
||||||
#define RBF_EXTERNAL (1<<28)
|
#define RBF_EXTERNAL (1<<28)
|
||||||
#define RBF_UNKOWN (1<<27)
|
#define RBF_UNKNOWN (1<<27)
|
||||||
#define RBF_SIZE 0x07ff
|
#define RBF_SIZE 0x07ff
|
||||||
#define RBF_LOCAL4 (1<<26)
|
#define RBF_LOCAL4 (1<<26)
|
||||||
#define RBF_LOCAL3 (1<<25)
|
#define RBF_LOCAL3 (1<<25)
|
||||||
|
|
|
@ -47,9 +47,9 @@ struct {
|
||||||
* initialize a bunch of registers.
|
* initialize a bunch of registers.
|
||||||
*
|
*
|
||||||
* Run from FLASH/PROM:
|
* Run from FLASH/PROM:
|
||||||
* - until memory controller is set up, only registers avaiable
|
* - until memory controller is set up, only registers available
|
||||||
* - no global variables available for writing
|
* - no global variables available for writing
|
||||||
* - constants avaiable
|
* - constants available
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void cpu_init_f(void)
|
void cpu_init_f(void)
|
||||||
|
|
|
@ -57,9 +57,9 @@ struct {
|
||||||
* initialize a bunch of registers.
|
* initialize a bunch of registers.
|
||||||
*
|
*
|
||||||
* Run from FLASH/PROM:
|
* Run from FLASH/PROM:
|
||||||
* - until memory controller is set up, only registers avaiable
|
* - until memory controller is set up, only registers available
|
||||||
* - no global variables available for writing
|
* - no global variables available for writing
|
||||||
* - constants avaiable
|
* - constants available
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void cpu_init_f(void)
|
void cpu_init_f(void)
|
||||||
|
|
|
@ -588,7 +588,7 @@ int do_usb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (dev == NULL) {
|
if (dev == NULL) {
|
||||||
printf("*** NO Device avaiable ***\n");
|
printf("*** No device available ***\n");
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
usb_display_desc(dev);
|
usb_display_desc(dev);
|
||||||
|
|
|
@ -254,7 +254,7 @@ int usb_stor_scan(int mode)
|
||||||
dev = usb_get_dev_index(i); /* get device */
|
dev = usb_get_dev_index(i); /* get device */
|
||||||
USB_STOR_PRINTF("i=%d\n", i);
|
USB_STOR_PRINTF("i=%d\n", i);
|
||||||
if (dev == NULL)
|
if (dev == NULL)
|
||||||
break; /* no more devices avaiable */
|
break; /* no more devices available */
|
||||||
|
|
||||||
if (usb_storage_probe(dev, 0, &usb_stor[usb_max_devs])) {
|
if (usb_storage_probe(dev, 0, &usb_stor[usb_max_devs])) {
|
||||||
/* OK, it's a storage device. Iterate over its LUNs
|
/* OK, it's a storage device. Iterate over its LUNs
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
#define RBF_MULTICAST (1<<30)
|
#define RBF_MULTICAST (1<<30)
|
||||||
#define RBF_UNICAST (1<<29)
|
#define RBF_UNICAST (1<<29)
|
||||||
#define RBF_EXTERNAL (1<<28)
|
#define RBF_EXTERNAL (1<<28)
|
||||||
#define RBF_UNKOWN (1<<27)
|
#define RBF_UNKNOWN (1<<27)
|
||||||
#define RBF_SIZE 0x07ff
|
#define RBF_SIZE 0x07ff
|
||||||
#define RBF_LOCAL4 (1<<26)
|
#define RBF_LOCAL4 (1<<26)
|
||||||
#define RBF_LOCAL3 (1<<25)
|
#define RBF_LOCAL3 (1<<25)
|
||||||
|
|
|
@ -794,7 +794,7 @@ jffs2_1pass_read_inode(struct b_lists *pL, u32 inode, char *dest)
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
/* unknown */
|
/* unknown */
|
||||||
putLabeledWord("UNKOWN COMPRESSION METHOD = ", jNode->compr);
|
putLabeledWord("UNKNOWN COMPRESSION METHOD = ", jNode->compr);
|
||||||
put_fl_mem(jNode, pL->readbuf);
|
put_fl_mem(jNode, pL->readbuf);
|
||||||
return -1;
|
return -1;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -350,7 +350,7 @@ jffs2_1pass_read_inode(struct b_lists *pL, u32 ino, char *dest,
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
/* unknown */
|
/* unknown */
|
||||||
putLabeledWord("UNKOWN COMPRESSION METHOD = ", inode->compr);
|
putLabeledWord("UNKNOWN COMPRESSION METHOD = ", inode->compr);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue