HI

2018-10-16 Thread Lisa



 I am sgt lisa. am sending this brief letter to solicit
your
partnership to transfer $3.5 M million US Dollars. I shall send you
more information and procedures when I receive positive response from
you.

sgt lisa. (sgtlis...@gmail.com)





Dear

2018-08-25 Thread lisa jaster
Dear,i am lisa jaster,it would be great to know you,i have a very
important and confidential matter that i want to discuss with
you,reply me back for more discus.
Regards,
Lisa Jaster.


Re: [PATCH 2/2] staging: media: davinci_vpfe: Remove spaces before semicolons

2013-12-10 Thread Lisa Nguyen
Hi everyone,

On Tue, Dec 10, 2013 at 6:34 AM, Prabhakar Lad
prabhakar.cse...@gmail.com wrote:
 Hi Laurent,

 On Tue, Dec 10, 2013 at 7:34 PM, Laurent Pinchart
 laurent.pinch...@ideasonboard.com wrote:
 Hi Prabhakar,

 On Wednesday 30 October 2013 13:20:25 Prabhakar Lad wrote:
 On Tue, Oct 29, 2013 at 2:53 AM, Lisa Nguyen l...@xenapiadmin.com wrote:
  Remove unnecessary spaces before semicolons to meet kernel
  coding style.
 
  Signed-off-by: Lisa Nguyen l...@xenapiadmin.com

 Acked-by: Lad, Prabhakar prabhakar.cse...@gmail.com

 Do you plan to send a pull request for these two patches ?

 I had asked for a change in the first patch but Lisa never turned back :(
 anyway I'll fix it and issue a pull request today to Mauro.

My apologies. What happened was that I originally had sent these two
patches to the staging mailing list. Greg KH advised me to send these
to Mauro and the linux-media mailing list instead. As a result, there
was a debate about the way the return statement was written in my
first patch between Greg and a fellow developer, so I wasn't sure who
to listen to. I was in the midst of changing jobs, so this didn't take
top priority.

Again, sorry, but I thank you for considering my patches.

Lisa
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 2/2] staging: media: davinci_vpfe: Remove spaces before semicolons

2013-12-10 Thread Lisa Nguyen
Hi Prabhakar,

On Tue, Dec 10, 2013 at 7:04 AM, Prabhakar Lad
prabhakar.cse...@gmail.com wrote:
 Hi Lisa,

 On Tue, Dec 10, 2013 at 8:27 PM, Lisa Nguyen l...@xenapiadmin.com wrote:
 Hi everyone,

 On Tue, Dec 10, 2013 at 6:34 AM, Prabhakar Lad
 prabhakar.cse...@gmail.com wrote:
 Hi Laurent,

 On Tue, Dec 10, 2013 at 7:34 PM, Laurent Pinchart
 laurent.pinch...@ideasonboard.com wrote:
 Hi Prabhakar,

 On Wednesday 30 October 2013 13:20:25 Prabhakar Lad wrote:
 On Tue, Oct 29, 2013 at 2:53 AM, Lisa Nguyen l...@xenapiadmin.com wrote:
  Remove unnecessary spaces before semicolons to meet kernel
  coding style.
 
  Signed-off-by: Lisa Nguyen l...@xenapiadmin.com

 Acked-by: Lad, Prabhakar prabhakar.cse...@gmail.com

 Do you plan to send a pull request for these two patches ?

 I had asked for a change in the first patch but Lisa never turned back :(
 anyway I'll fix it and issue a pull request today to Mauro.

 My apologies. What happened was that I originally had sent these two
 patches to the staging mailing list. Greg KH advised me to send these
 to Mauro and the linux-media mailing list instead. As a result, there
 was a debate about the way the return statement was written in my
 first patch between Greg and a fellow developer, so I wasn't sure who
 to listen to. I was in the midst of changing jobs, so this didn't take
 top priority.

 Ok, do you plan to post it now ?

To be clear, I'd only have to update the first patch, correct?
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v2] staging: media: davinci_vpfe: Rewrite return statement in vpfe_video.c

2013-12-10 Thread Lisa Nguyen
Rewrite the return statement in vpfe_video.c to eliminate the
use of a ternary operator. This will prevent the checkpatch.pl
script from generating a warning saying to remove () from
this particular return statement.

Signed-off-by: Lisa Nguyen l...@xenapiadmin.com
---
Changes since v2:
- Aligned -ETIMEDOUT return statement with if condition

 drivers/staging/media/davinci_vpfe/vpfe_video.c |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/media/davinci_vpfe/vpfe_video.c 
b/drivers/staging/media/davinci_vpfe/vpfe_video.c
index 24d98a6..22e31d2 100644
--- a/drivers/staging/media/davinci_vpfe/vpfe_video.c
+++ b/drivers/staging/media/davinci_vpfe/vpfe_video.c
@@ -346,7 +346,10 @@ static int vpfe_pipeline_disable(struct vpfe_pipeline 
*pipe)
}
mutex_unlock(mdev-graph_mutex);
 
-   return (ret == 0) ? ret : -ETIMEDOUT ;
+   if (ret == 0)
+   return ret;
+
+   return -ETIMEDOUT;
 }
 
 /*
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v2] staging: media: davinci_vpfe: Rewrite return statement in vpfe_video.c

2013-12-10 Thread Lisa Nguyen
Hi Laurent,

On Tue, Dec 10, 2013 at 8:50 AM, Laurent Pinchart
laurent.pinch...@ideasonboard.com wrote:
 Hi Lisa,

 Thank you for the patch.

 On Tuesday 10 December 2013 08:05:42 Lisa Nguyen wrote:
 Rewrite the return statement in vpfe_video.c to eliminate the
 use of a ternary operator. This will prevent the checkpatch.pl
 script from generating a warning saying to remove () from
 this particular return statement.

 Signed-off-by: Lisa Nguyen l...@xenapiadmin.com
 ---
 Changes since v2:
 - Aligned -ETIMEDOUT return statement with if condition

  drivers/staging/media/davinci_vpfe/vpfe_video.c |5 -
  1 file changed, 4 insertions(+), 1 deletion(-)

 diff --git a/drivers/staging/media/davinci_vpfe/vpfe_video.c
 b/drivers/staging/media/davinci_vpfe/vpfe_video.c index 24d98a6..22e31d2
 100644
 --- a/drivers/staging/media/davinci_vpfe/vpfe_video.c
 +++ b/drivers/staging/media/davinci_vpfe/vpfe_video.c
 @@ -346,7 +346,10 @@ static int vpfe_pipeline_disable(struct vpfe_pipeline
 *pipe) }
   mutex_unlock(mdev-graph_mutex);

 - return (ret == 0) ? ret : -ETIMEDOUT ;
 + if (ret == 0)
 + return ret;
 +
 + return -ETIMEDOUT;

 I don't want to point the obvious, but what about just

 return ret ? -ETIMEDOUT : 0;

 or, if this is just about fixing the checkpatch.pl warning,

 return ret == 0 ? ret : -ETIMEDOUT;

 (I'd prefer the first)

I understand your point :) I was making changes based on Prabhakar's
feedback he gave me a while back[1].

Should I wait until he says?

Lisa

[1] http://www.mail-archive.com/linux-media@vger.kernel.org/msg67833.html
--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v3] staging: media: davinci_vpfe: Rewrite return statement in vpfe_video.c

2013-12-10 Thread Lisa Nguyen
Rewrite the return statement in vpfe_video.c. This will prevent
the checkpatch.pl script from generating a warning saying
to remove () from this particular return statement.

Signed-off-by: Lisa Nguyen l...@xenapiadmin.com
---
Changes since v3:
- Removed () from return statement per Laurent Pinchart's suggestion

 drivers/staging/media/davinci_vpfe/vpfe_video.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/media/davinci_vpfe/vpfe_video.c 
b/drivers/staging/media/davinci_vpfe/vpfe_video.c
index 24d98a6..3b036be 100644
--- a/drivers/staging/media/davinci_vpfe/vpfe_video.c
+++ b/drivers/staging/media/davinci_vpfe/vpfe_video.c
@@ -346,7 +346,7 @@ static int vpfe_pipeline_disable(struct vpfe_pipeline *pipe)
}
mutex_unlock(mdev-graph_mutex);
 
-   return (ret == 0) ? ret : -ETIMEDOUT ;
+   return ret ? -ETIMEDOUT : 0;
 }
 
 /*
-- 
1.7.9.5

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 1/2] staging: media: davinci_vpfe: Rewrite return statement in vpfe_video.c

2013-10-28 Thread Lisa Nguyen
Rewrite the return statement in vpfe_video.c to eliminate the
use of a ternary operator. This will prevent the checkpatch.pl
script from generating a warning saying to remove () from
this particular return statement.

Signed-off-by: Lisa Nguyen l...@xenapiadmin.com
---
 drivers/staging/media/davinci_vpfe/vpfe_video.c | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/media/davinci_vpfe/vpfe_video.c 
b/drivers/staging/media/davinci_vpfe/vpfe_video.c
index 24d98a6..49aafe4 100644
--- a/drivers/staging/media/davinci_vpfe/vpfe_video.c
+++ b/drivers/staging/media/davinci_vpfe/vpfe_video.c
@@ -346,7 +346,10 @@ static int vpfe_pipeline_disable(struct vpfe_pipeline 
*pipe)
}
mutex_unlock(mdev-graph_mutex);
 
-   return (ret == 0) ? ret : -ETIMEDOUT ;
+   if (ret == 0)
+   return ret;
+   else
+   return -ETIMEDOUT;
 }
 
 /*
-- 
1.8.1.2

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 2/2] staging: media: davinci_vpfe: Remove spaces before semicolons

2013-10-28 Thread Lisa Nguyen
Remove unnecessary spaces before semicolons to meet kernel
coding style.

Signed-off-by: Lisa Nguyen l...@xenapiadmin.com
---
 drivers/staging/media/davinci_vpfe/dm365_ipipe.c| 2 +-
 drivers/staging/media/davinci_vpfe/dm365_ipipe_hw.c | 4 ++--
 drivers/staging/media/davinci_vpfe/dm365_isif.c | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/media/davinci_vpfe/dm365_ipipe.c 
b/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
index 766a071..b7044a3 100644
--- a/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
+++ b/drivers/staging/media/davinci_vpfe/dm365_ipipe.c
@@ -1009,7 +1009,7 @@ static int ipipe_validate_yee_params(struct 
vpfe_ipipe_yee *yee)
yee-es_ofst_grad  YEE_THR_MASK)
return -EINVAL;
 
-   for (i = 0; i  VPFE_IPIPE_MAX_SIZE_YEE_LUT ; i++)
+   for (i = 0; i  VPFE_IPIPE_MAX_SIZE_YEE_LUT; i++)
if (yee-table[i]  YEE_ENTRY_MASK)
return -EINVAL;
 
diff --git a/drivers/staging/media/davinci_vpfe/dm365_ipipe_hw.c 
b/drivers/staging/media/davinci_vpfe/dm365_ipipe_hw.c
index e027b92..2d36b60 100644
--- a/drivers/staging/media/davinci_vpfe/dm365_ipipe_hw.c
+++ b/drivers/staging/media/davinci_vpfe/dm365_ipipe_hw.c
@@ -791,7 +791,7 @@ ipipe_set_3d_lut_regs(void *__iomem base_addr, void 
*__iomem isp5_base_addr,
 
/* valied table */
tbl = lut_3d-table;
-   for (i = 0 ; i  VPFE_IPIPE_MAX_SIZE_3D_LUT; i++) {
+   for (i = 0; i  VPFE_IPIPE_MAX_SIZE_3D_LUT; i++) {
/* Each entry has 0-9 (B), 10-19 (G) and
20-29 R values */
val = tbl[i].b  D3_LUT_ENTRY_MASK;
@@ -899,7 +899,7 @@ ipipe_set_gbce_regs(void *__iomem base_addr, void *__iomem 
isp5_base_addr,
if (!gbce-table)
return;
 
-   for (count = 0; count  VPFE_IPIPE_MAX_SIZE_GBCE_LUT ; count += 2)
+   for (count = 0; count  VPFE_IPIPE_MAX_SIZE_GBCE_LUT; count += 2)
w_ip_table(isp5_base_addr, ((gbce-table[count + 1]  mask) 
GBCE_ENTRY_SHIFT) | (gbce-table[count]  mask),
((count/2)  2) + GBCE_TB_START_ADDR);
diff --git a/drivers/staging/media/davinci_vpfe/dm365_isif.c 
b/drivers/staging/media/davinci_vpfe/dm365_isif.c
index ff48fce..4171cfd 100644
--- a/drivers/staging/media/davinci_vpfe/dm365_isif.c
+++ b/drivers/staging/media/davinci_vpfe/dm365_isif.c
@@ -918,7 +918,7 @@ isif_config_dfc(struct vpfe_isif_device *isif, struct 
vpfe_isif_dfc *vdfc)
   (0  ISIF_VDFC_EN_SHIFT), DFCCTL);
 
isif_write(isif-isif_cfg.base_addr, 0x6, DFCMEMCTL);
-   for (i = 0 ; i  vdfc-num_vdefects; i++) {
+   for (i = 0; i  vdfc-num_vdefects; i++) {
count = DFC_WRITE_WAIT_COUNT;
while (count 
(isif_read(isif-isif_cfg.base_addr, DFCMEMCTL)  0x2))
-- 
1.8.1.2

--
To unsubscribe from this list: send the line unsubscribe linux-media in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html