Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 73ac36ea authored by Coly Li's avatar Coly Li Committed by Linus Torvalds
Browse files

fix similar typos to successfull



When I review ocfs2 code, find there are 2 typos to "successfull".  After
doing grep "successfull " in kernel tree, 22 typos found totally -- great
minds always think alike :)

This patch fixes all the similar typos. Thanks for Randy's ack and comments.

Signed-off-by: default avatarColy Li <coyli@suse.de>
Acked-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Acked-by: default avatarRoland Dreier <rolandd@cisco.com>
Cc: Jeremy Kerr <jk@ozlabs.org>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Mark Fasheh <mfasheh@suse.com>
Cc: Vlad Yasevich <vladislav.yasevich@hp.com>
Cc: Sridhar Samudrala <sri@us.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent da2bdf9a
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -121,7 +121,7 @@ Once all bytes have been read data will hold 0x09, but there is no reason to
test for this. Notice that the number of bytes is bank address dependent see
test for this. Notice that the number of bytes is bank address dependent see
above and below.
above and below.


After completing a successfull read it is advised to put the uGuru back in
After completing a successful read it is advised to put the uGuru back in
ready mode, so that it is ready for the next read / write cycle. This way
ready mode, so that it is ready for the next read / write cycle. This way
if your program / driver is unloaded and later loaded again the detection
if your program / driver is unloaded and later loaded again the detection
algorithm described above will still work.
algorithm described above will still work.
@@ -141,7 +141,7 @@ don't ask why this is the way it is.


Once DATA holds 0x01 read CMD it should hold 0xAC now.
Once DATA holds 0x01 read CMD it should hold 0xAC now.


After completing a successfull write it is advised to put the uGuru back in
After completing a successful write it is advised to put the uGuru back in
ready mode, so that it is ready for the next read / write cycle. This way
ready mode, so that it is ready for the next read / write cycle. This way
if your program / driver is unloaded and later loaded again the detection
if your program / driver is unloaded and later loaded again the detection
algorithm described above will still work.
algorithm described above will still work.
+2 −2
Original line number Original line Diff line number Diff line
@@ -191,7 +191,7 @@ Vport States:
      This is equivalent to a driver "attach" on an adapter, which is
      This is equivalent to a driver "attach" on an adapter, which is
      independent of the adapter's link state.
      independent of the adapter's link state.
    - Instantiation of the vport on the FC link via ELS traffic, etc.
    - Instantiation of the vport on the FC link via ELS traffic, etc.
      This is equivalent to a "link up" and successfull link initialization.
      This is equivalent to a "link up" and successful link initialization.
  Further information can be found in the interfaces section below for
  Further information can be found in the interfaces section below for
  Vport Creation.
  Vport Creation.


@@ -320,7 +320,7 @@ Vport Creation:
      This is equivalent to a driver "attach" on an adapter, which is
      This is equivalent to a driver "attach" on an adapter, which is
      independent of the adapter's link state.
      independent of the adapter's link state.
    - Instantiation of the vport on the FC link via ELS traffic, etc.
    - Instantiation of the vport on the FC link via ELS traffic, etc.
      This is equivalent to a "link up" and successfull link initialization.
      This is equivalent to a "link up" and successful link initialization.


  The LLDD's vport_create() function will not synchronously wait for both
  The LLDD's vport_create() function will not synchronously wait for both
  parts to be fully completed before returning. It must validate that the
  parts to be fully completed before returning. It must validate that the
+1 −1
Original line number Original line Diff line number Diff line
@@ -314,7 +314,7 @@ extern char *isolated_loader;
 *	we need to call spu_release(ctx) before sleeping, and
 *	we need to call spu_release(ctx) before sleeping, and
 *	then spu_acquire(ctx) when awoken.
 *	then spu_acquire(ctx) when awoken.
 *
 *
 * 	Returns with state_mutex re-acquired when successfull or
 * 	Returns with state_mutex re-acquired when successful or
 * 	with -ERESTARTSYS and the state_mutex dropped when interrupted.
 * 	with -ERESTARTSYS and the state_mutex dropped when interrupted.
 */
 */


+1 −1
Original line number Original line Diff line number Diff line
@@ -2705,7 +2705,7 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
			sizeof(struct ietf_mpa_frame));
			sizeof(struct ietf_mpa_frame));




	/* notify OF layer that accept event was successfull */
	/* notify OF layer that accept event was successful */
	cm_id->add_ref(cm_id);
	cm_id->add_ref(cm_id);


	cm_event.event = IW_CM_EVENT_ESTABLISHED;
	cm_event.event = IW_CM_EVENT_ESTABLISHED;
+1 −1
Original line number Original line Diff line number Diff line
@@ -235,7 +235,7 @@ typedef void ( * DbgOld) (unsigned short, char *, va_list) ;
typedef void ( * DbgEv)  (unsigned short, unsigned long, va_list) ;
typedef void ( * DbgEv)  (unsigned short, unsigned long, va_list) ;
typedef void ( * DbgIrq) (unsigned short, int, char *, va_list) ;
typedef void ( * DbgIrq) (unsigned short, int, char *, va_list) ;
typedef struct _DbgHandle_
typedef struct _DbgHandle_
{ char    Registered ; /* driver successfull registered */
{ char    Registered ; /* driver successfully registered */
#define DBG_HANDLE_REG_NEW 0x01  /* this (new) structure    */
#define DBG_HANDLE_REG_NEW 0x01  /* this (new) structure    */
#define DBG_HANDLE_REG_OLD 0x7f  /* old structure (see below)  */
#define DBG_HANDLE_REG_OLD 0x7f  /* old structure (see below)  */
 char    Version;  /* version of this structure  */
 char    Version;  /* version of this structure  */
Loading