Skip to content

Commit

Permalink
[SCSI] bfa: fix comments for c files
Browse files Browse the repository at this point in the history
This patch addresses the comments from Randy Dunlap (Randy.Dunlap@oracle.com)
regarding comment blocks that begining with "/**". bfa driver comments
currently do not follow kernel-doc convention, we hence replace all
/** with /* and **/ with */.

Signed-off-by: Jing Huang <huangj@brocade.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
  • Loading branch information
Jing Huang authored and James Bottomley committed Oct 25, 2010
1 parent acdc79a commit 5fbe25c
Show file tree
Hide file tree
Showing 18 changed files with 943 additions and 1,003 deletions.
112 changes: 56 additions & 56 deletions drivers/scsi/bfa/bfa_core.c

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions drivers/scsi/bfa/bfa_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#include "bfa_modules.h"

/**
/*
* BFA module list terminated by NULL
*/
struct bfa_module_s *hal_mods[] = {
Expand All @@ -31,7 +31,7 @@ struct bfa_module_s *hal_mods[] = {
NULL
};

/**
/*
* Message handlers for various modules.
*/
bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
Expand Down Expand Up @@ -70,7 +70,7 @@ bfa_isr_func_t bfa_isrs[BFI_MC_MAX] = {
};


/**
/*
* Message handlers for mailbox command classes
*/
bfa_ioc_mbox_mcfunc_t bfa_mbox_isrs[BFI_MC_MAX] = {
Expand Down
2 changes: 1 addition & 1 deletion drivers/scsi/bfa/bfa_fcbuild.c
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fc_gs_fchdr_build(struct fchs_s *fchs, u32 d_id, u32 s_id, u32 ox_id)
fchs->s_id = (s_id);
fchs->ox_id = cpu_to_be16(ox_id);

/**
/*
* @todo no need to set ox_id for request
* no need to set rx_id for response
*/
Expand Down
Loading

0 comments on commit 5fbe25c

Please sign in to comment.