mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
mobicore: rename variable to lower case.
Rename variable mmapResp to mmap_resp in order to meet the coding guidelines. Change-Id: Icc4b712b62e9bf16a65c5af4e96dc9ef2cac9b18 Signed-off-by: Lukas Hänel <lukas.haenel@gi-de.com> Signed-off-by: Mona Hossain <mhossain@codeaurora.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
4447bf3cdc
commit
7efb63230d
1 changed files with 5 additions and 5 deletions
|
@ -2365,16 +2365,16 @@ static int mc_kernel_module_mmap(
|
|||
|
||||
/* set response in allocated buffer */
|
||||
{
|
||||
struct mc_mmap_resp *mmapResp =
|
||||
struct mc_mmap_resp *mmap_resp =
|
||||
(struct mc_mmap_resp *)virt_kernel_addr_stack;
|
||||
/* TODO: do this for daemon only, otherwise set NULL */
|
||||
mmapResp->phys_addr = (uint32_t)phys_addr;
|
||||
mmapResp->handle = handle;
|
||||
mmap_resp->phys_addr = (uint32_t)phys_addr;
|
||||
mmap_resp->handle = handle;
|
||||
if ((request == MC_DRV_KMOD_MMAP_MCI) &&
|
||||
(mci_base != 0)) {
|
||||
mmapResp->is_reused = 1;
|
||||
mmap_resp->is_reused = 1;
|
||||
} else
|
||||
mmapResp->is_reused = 0;
|
||||
mmap_resp->is_reused = 0;
|
||||
}
|
||||
|
||||
/* store MCI pointer */
|
||||
|
|
Loading…
Reference in a new issue