From: Erik Arfvidson Date: Mon, 21 Nov 2016 17:15:43 +0000 (-0500) Subject: staging: unisys: visorbus: visorbus_private rename 'local' var to 'dest' X-Git-Tag: v5.15~12305^2~121 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ed146cdb99651d0ae4498ae658654625f6bade7;p=platform%2Fkernel%2Flinux-starfive.git staging: unisys: visorbus: visorbus_private rename 'local' var to 'dest' This patch renames the poorly named 'local' var to 'dest' in the visorbus_private.h file Signed-off-by: Erik Arfvidson Signed-off-by: David Kershner Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorbus/visorbus_private.h b/drivers/staging/unisys/visorbus/visorbus_private.h index 15403fb5..49bec17 100644 --- a/drivers/staging/unisys/visorbus/visorbus_private.h +++ b/drivers/staging/unisys/visorbus/visorbus_private.h @@ -70,9 +70,9 @@ struct visorchannel *visorchannel_create_with_lock(u64 physaddr, gfp_t gfp, uuid_le guid); void visorchannel_destroy(struct visorchannel *channel); int visorchannel_read(struct visorchannel *channel, ulong offset, - void *local, ulong nbytes); + void *dest, ulong nbytes); int visorchannel_write(struct visorchannel *channel, ulong offset, - void *local, ulong nbytes); + void *dest, ulong nbytes); u64 visorchannel_get_physaddr(struct visorchannel *channel); ulong visorchannel_get_nbytes(struct visorchannel *channel); char *visorchannel_id(struct visorchannel *channel, char *s);