Fix CamelCase names: Issue_VMCALL_CHANNEL_MISMATCH => issue_vmcall_channel_mismatch ChannelName => chname ItemName => item_name SourceLineNumber => line_no Signed-off-by: Benjamin Romer <benjamin.romer@xxxxxxxxxx> --- drivers/staging/unisys/include/uisutils.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/drivers/staging/unisys/include/uisutils.h b/drivers/staging/unisys/include/uisutils.h index e777eec..6ba42e4 100644 --- a/drivers/staging/unisys/include/uisutils.h +++ b/drivers/staging/unisys/include/uisutils.h @@ -294,21 +294,20 @@ static inline int issue_vmcall_update_physical_time(u64 adjustment) return result; } -static inline unsigned int -Issue_VMCALL_CHANNEL_MISMATCH(const char *ChannelName, - const char *ItemName, - u32 SourceLineNumber, const char *path_n_fn) +static inline unsigned int issue_vmcall_channel_mismatch(const char *chname, + const char *item_name, u32 line_no, + const char *path_n_fn) { VMCALL_CHANNEL_VERSION_MISMATCH_PARAMS params; int result = VMCALL_SUCCESS; u64 physaddr; char *last_slash = NULL; - strlcpy(params.ChannelName, ChannelName, + strlcpy(params.ChannelName, chname, lengthof(VMCALL_CHANNEL_VERSION_MISMATCH_PARAMS, ChannelName)); - strlcpy(params.ItemName, ItemName, + strlcpy(params.ItemName, item_name, lengthof(VMCALL_CHANNEL_VERSION_MISMATCH_PARAMS, ItemName)); - params.SourceLineNumber = SourceLineNumber; + params.SourceLineNumber = line_no; last_slash = strrchr(path_n_fn, '/'); if (last_slash != NULL) { -- 1.9.1 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel