gpu: nvgpu: fix log doxygen typos

Fix minor documentation nits in description of nvgpu log apis.

Jira NVGPU-3178

Change-Id: I6d91128cfdf5914b9533bdc4e95d0e6b180fad07
Signed-off-by: Scott Long <scottl@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2261443
Reviewed-by: Automatic_Commit_Validation_User
GVS: Gerrit_Virtual_Submit
Reviewed-by: Alex Waterman <alexw@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Scott Long
2019-12-12 16:26:23 -08:00
committed by Alex Waterman
parent fdb8046812
commit b93a5a3b6a

View File

@@ -65,19 +65,19 @@ bool nvgpu_log_mask_enabled(struct gk20a *g, u64 log_mask);
* @fmt - A format string (printf style).
* @arg... - Arguments for the format string.
*
* Uncondtionally print an error message.
* Unconditionally print an error message.
*/
#define nvgpu_err(g, fmt, arg...) \
nvgpu_err_impl(g, fmt, ##arg)
/**
* nvgpu_err - Print a warning
* nvgpu_warn - Print a warning
*
* @g - The GPU.
* @fmt - A format string (printf style).
* @arg... - Arguments for the format string.
*
* Uncondtionally print a warming message.
* Unconditionally print a warning message.
*/
#define nvgpu_warn(g, fmt, arg...) \
nvgpu_warn_impl(g, fmt, ##arg)