Skip to content

Commit

Permalink
thunderbolt: eeprom: Fix kernel-doc descriptions of non-static functions
Browse files Browse the repository at this point in the history
Fix kernel-doc descriptions of the two non-static functions. This also
gets rid of the rest of the warnings on W=1 build.

Reported-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Lee Jones <lee.jones@linaro.org>
  • Loading branch information
Mika Westerberg committed Feb 4, 2021
1 parent 9c3db0b commit b12e482
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions drivers/thunderbolt/eeprom.c
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,9 @@ struct tb_drom_entry_port {


/**
* tb_drom_read_uid_only - read uid directly from drom
* tb_drom_read_uid_only() - Read UID directly from DROM
* @sw: Router whose UID to read
* @uid: UID is placed here
*
* Does not use the cached copy in sw->drom. Used during resume to check switch
* identity.
Expand Down Expand Up @@ -520,7 +522,14 @@ static int tb_drom_read_n(struct tb_switch *sw, u16 offset, u8 *val,
}

/**
* tb_drom_read - copy drom to sw->drom and parse it
* tb_drom_read() - Copy DROM to sw->drom and parse it
* @sw: Router whose DROM to read and parse
*
* This function reads router DROM and if successful parses the entries and
* populates the fields in @sw accordingly. Can be called for any router
* generation.
*
* Returns %0 in case of success and negative errno otherwise.
*/
int tb_drom_read(struct tb_switch *sw)
{
Expand Down

0 comments on commit b12e482

Please sign in to comment.