Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc: mic: scif: scif_epd: Describe missing 'scifdev' argument(s)

For some reason (copy 'n' paste error?) the passed in pointers to
'struct scif_dev scifdev' weren't described throughout the source
file. Change that.

Fixes the following W=1 kernel build warning(s):

drivers/misc/mic/scif/scif_epd.c:120: warning: Function parameter or member 'scifdev' not described in 'scif_cnctreq'
drivers/misc/mic/scif/scif_epd.c:166: warning: Function parameter or member 'scifdev' not described in 'scif_cnctgnt'
drivers/misc/mic/scif/scif_epd.c:191: warning: Function parameter or member 'scifdev' not described in 'scif_cnctgnt_ack'
drivers/misc/mic/scif/scif_epd.c:213: warning: Function parameter or member 'scifdev' not described in 'scif_cnctgnt_nack'
drivers/misc/mic/scif/scif_epd.c:230: warning: Function parameter or member 'scifdev' not described in 'scif_cnctrej'
drivers/misc/mic/scif/scif_epd.c:255: warning: Function parameter or member 'scifdev' not described in 'scif_discnct'
drivers/misc/mic/scif/scif_epd.c:309: warning: Function parameter or member 'scifdev' not described in 'scif_discnt_ack'
drivers/misc/mic/scif/scif_epd.c:325: warning: Function parameter or member 'scifdev' not described in 'scif_clientsend'
drivers/misc/mic/scif/scif_epd.c:341: warning: Function parameter or member 'scifdev' not described in 'scif_clientrcvd'

Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20200701083118.45744-21-lee.jones@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Lee Jones and committed by
Greg Kroah-Hartman
3e30b9e3 5d137a36

+9
+9
drivers/misc/mic/scif/scif_epd.c
··· 104 104 105 105 /** 106 106 * scif_cnctreq() - Respond to SCIF_CNCT_REQ interrupt message 107 + * @scifdev: SCIF device 107 108 * @msg: Interrupt message 108 109 * 109 110 * This message is initiated by the remote node to request a connection ··· 156 155 157 156 /** 158 157 * scif_cnctgnt() - Respond to SCIF_CNCT_GNT interrupt message 158 + * @scifdev: SCIF device 159 159 * @msg: Interrupt message 160 160 * 161 161 * An accept() on the remote node has occurred and sent this message ··· 183 181 184 182 /** 185 183 * scif_cnctgnt_ack() - Respond to SCIF_CNCT_GNTACK interrupt message 184 + * @scifdev: SCIF device 186 185 * @msg: Interrupt message 187 186 * 188 187 * The remote connection request has finished mapping the local memory. ··· 206 203 207 204 /** 208 205 * scif_cnctgnt_nack() - Respond to SCIF_CNCT_GNTNACK interrupt message 206 + * @scifdev: SCIF device 209 207 * @msg: Interrupt message 210 208 * 211 209 * The remote connection request failed to map the local memory it was sent. ··· 225 221 226 222 /** 227 223 * scif_cnctrej() - Respond to SCIF_CNCT_REJ interrupt message 224 + * @scifdev: SCIF device 228 225 * @msg: Interrupt message 229 226 * 230 227 * The remote end has rejected the connection request. Set the end ··· 245 240 246 241 /** 247 242 * scif_discnct() - Respond to SCIF_DISCNCT interrupt message 243 + * @scifdev: SCIF device 248 244 * @msg: Interrupt message 249 245 * 250 246 * The remote node has indicated close() has been called on its end ··· 307 301 308 302 /** 309 303 * scif_discnct_ack() - Respond to SCIF_DISCNT_ACK interrupt message 304 + * @scifdev: SCIF device 310 305 * @msg: Interrupt message 311 306 * 312 307 * Remote side has indicated it has not more references to local resources ··· 324 317 325 318 /** 326 319 * scif_clientsend() - Respond to SCIF_CLIENT_SEND interrupt message 320 + * @scifdev: SCIF device 327 321 * @msg: Interrupt message 328 322 * 329 323 * Remote side is confirming send or receive interrupt handling is complete. ··· 341 333 342 334 /** 343 335 * scif_clientrcvd() - Respond to SCIF_CLIENT_RCVD interrupt message 336 + * @scifdev: SCIF device 344 337 * @msg: Interrupt message 345 338 * 346 339 * Remote side is confirming send or receive interrupt handling is complete.