Skip to content

Commit

Permalink
net: cavium: Fix a bunch of kerneldoc parameter issues
Browse files Browse the repository at this point in the history
Rename ptp to ptp_info.

Fix W=1 compile warnings (invalid kerneldoc):

drivers/net/ethernet/cavium/common/cavium_ptp.c:94: warning: Excess function parameter 'ptp' description in 'cavium_ptp_adjfine'
drivers/net/ethernet/cavium/common/cavium_ptp.c:141: warning: Excess function parameter 'ptp' description in 'cavium_ptp_adjtime'
drivers/net/ethernet/cavium/common/cavium_ptp.c:163: warning: Excess function parameter 'ptp' description in 'cavium_ptp_gettime'
drivers/net/ethernet/cavium/common/cavium_ptp.c:185: warning: Excess function parameter 'ptp' description in 'cavium_ptp_settime'
drivers/net/ethernet/cavium/common/cavium_ptp.c:208: warning: Excess function parameter 'ptp' description in 'cavium_ptp_enable'

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wang Hai authored and David S. Miller committed Sep 9, 2020
1 parent 76f919e commit 74c654a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/net/ethernet/cavium/common/cavium_ptp.c
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ EXPORT_SYMBOL(cavium_ptp_put);

/**
* cavium_ptp_adjfine() - Adjust ptp frequency
* @ptp: PTP clock info
* @ptp_info: PTP clock info
* @scaled_ppm: how much to adjust by, in parts per million, but with a
* 16 bit binary fractional field
*/
@@ -134,7 +134,7 @@ static int cavium_ptp_adjfine(struct ptp_clock_info *ptp_info, long scaled_ppm)

/**
* cavium_ptp_adjtime() - Adjust ptp time
* @ptp: PTP clock info
* @ptp_info: PTP clock info
* @delta: how much to adjust by, in nanosecs
*/
static int cavium_ptp_adjtime(struct ptp_clock_info *ptp_info, s64 delta)
@@ -155,7 +155,7 @@ static int cavium_ptp_adjtime(struct ptp_clock_info *ptp_info, s64 delta)

/**
* cavium_ptp_gettime() - Get hardware clock time with adjustment
* @ptp: PTP clock info
* @ptp_info: PTP clock info
* @ts: timespec
*/
static int cavium_ptp_gettime(struct ptp_clock_info *ptp_info,
@@ -177,7 +177,7 @@ static int cavium_ptp_gettime(struct ptp_clock_info *ptp_info,

/**
* cavium_ptp_settime() - Set hardware clock time. Reset adjustment
* @ptp: PTP clock info
* @ptp_info: PTP clock info
* @ts: timespec
*/
static int cavium_ptp_settime(struct ptp_clock_info *ptp_info,
@@ -199,7 +199,7 @@ static int cavium_ptp_settime(struct ptp_clock_info *ptp_info,

/**
* cavium_ptp_enable() - Request to enable or disable an ancillary feature.
* @ptp: PTP clock info
* @ptp_info: PTP clock info
* @rq: request
* @on: is it on
*/

0 comments on commit 74c654a

Please sign in to comment.