Dear Webmail Account Owner

2015-08-29 Thread Mr.Warren E. Buffett,
Greetings To You From Mr.Warren Edward Buffett, You have been gifted $1.5 MILLION USD donation fund.I am still waiting for you to contact me for details on how to claim this donation which i awarded to you. I hope this information meet you well as I know you will be curious to know why/how I

[PATCH v8 10/55] [media] media: rename the function that create pad links

2015-08-29 Thread Mauro Carvalho Chehab
With the new API, a link can be either between two PADs or between an interface and an entity. So, we need to use a better name for the function that create links between two pads. So, rename the such function to media_create_pad_link(). No functional changes. This patch was created via this she

[PATCH v8 37/55] [media] omap4iss: stop MEDIA_ENT_T_V4L2_SUBDEV abuse

2015-08-29 Thread Mauro Carvalho Chehab
This driver is abusing MEDIA_ENT_T_V4L2_SUBDEV, as it uses a hack to check if the remote entity is a subdev. Get rid of it. Signed-off-by: Mauro Carvalho Chehab diff --git a/drivers/staging/media/omap4iss/iss_ipipe.c b/drivers/staging/media/omap4iss/iss_ipipe.c index e1a7b7ba7362..eb91ec48a21e

[PATCH v8 32/55] [media] media: use macros to check for V4L2 subdev entities

2015-08-29 Thread Mauro Carvalho Chehab
Instead of relying on media subtype, use the new macros to detect if an entity is a subdev or an A/V DMA entity. Please note that most drivers assume that there's just AV_DMA or V4L2 subdevs. This is not true anymore, as we've added MC support for DVB, and there are plans to add support for ALSA a

[PATCH v8 00/55] MC next generation patches

2015-08-29 Thread Mauro Carvalho Chehab
That's the 8th version of the MC next generation patches. Differences from version 7: - Patches reworked to make the reviewers happy; - Bug fixes; - ALSA changes got their own separate patches; - Javier patches got integrated into this series; - media-entity.h structs are now properly documented;

[PATCH v8 33/55] [media] omap3/omap4/davinci: get rid of MEDIA_ENT_T_V4L2_SUBDEV abuse

2015-08-29 Thread Mauro Carvalho Chehab
On omap3/omap4/davinci drivers, MEDIA_ENT_T_V4L2_SUBDEV macro is abused in order to "simplify" the pad checks. Basically, it does a logical or of this macro, in order to check for a local index and if the entity is either a subdev or not. As we'll get rid of MEDIA_ENT_T_V4L2_SUBDEV macro, replace

[PATCH v8 11/55] [media] media: use entity.graph_obj.mdev instead of .parent

2015-08-29 Thread Mauro Carvalho Chehab
From: Javier Martinez Canillas The struct media_entity has a .parent field that stores a pointer to the parent struct media_device. But recently a media_gobj was embedded into the entities and since struct media_gojb already has a pointer to a struct media_device in the .mdev field, the .parent f

[PATCH v8 36/55] [media] davinci_vbpe: stop MEDIA_ENT_T_V4L2_SUBDEV abuse

2015-08-29 Thread Mauro Carvalho Chehab
This driver is abusing MEDIA_ENT_T_V4L2_SUBDEV: - it uses a hack to check if the remote entity is a subdev; - it still uses the legacy entity subtype check macro, that will be removed soon. Signed-off-by: Mauro Carvalho Chehab diff --git a/drivers/staging/media/davinci_vpfe/dm365_ipipe.c b/d

[PATCH v8 02/55] [media] staging: omap4iss: get entity ID using media_entity_id()

2015-08-29 Thread Mauro Carvalho Chehab
From: Javier Martinez Canillas Assessing media_entity ID should now use media_entity_id() macro to obtain the entity ID, as a next patch will remove the .id field from struct media_entity . So, get rid of it, otherwise the omap4iss driver will fail to build. Signed-off-by: Javier Martinez Canil

Re: [PATCH 8/8] staging: lustre: put constant on the right of binary operator

2015-08-29 Thread Joe Perches
On Sat, 2015-08-29 at 19:30 +0200, Julia Lawall wrote: > Move constants to the right of binary operators. [] > diff --git a/drivers/staging/lustre/lustre/ptlrpc/client.c > b/drivers/staging/lustre/lustre/ptlrpc/client.c [] > @@ -2954,7 +2954,7 @@ void ptlrpc_init_xid(void) > } > > /*

[PATCH 5/8] staging: lustre: llite: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 6/8] Staging: lustre: obd: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 8/8] staging: lustre: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 7/8] staging: lustre: osc: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 2/8] staging: lustre: lnet: lib-ptl.c: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 3/8] staging: lustre: ldlm: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 0/8] put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Typically, constants appear to the right of binary operators. The complete semantic patch that performs this change is as follows (http://coccinelle.lip6.fr/). In particular, it doesn't change long sequences of bit ors, or comparisons that are checking that some expression has a value that is bet

[PATCH 4/8] staging: lustre: libcfs: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH 1/8] staging: lustre: include: put constant on the right of binary operator

2015-08-29 Thread Julia Lawall
Move constants to the right of binary operators. A simplified version of the semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ constant c; expression e; binary operator b = {==,!=,&,|}; @@ ( - c + e b - e + c | - c < e + e > c ) // Signed-off-by: Julia La

[PATCH] staging: most: Use NULL instead of 0 in assignment of pointer

2015-08-29 Thread Anders Fridlund
Fix sparse warning 'Using plain integer as NULL pointer' by replacing 0 with NULL in the assignment. Signed-off-by: Anders Fridlund --- drivers/staging/most/aim-network/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/most/aim-network/networking.c

Quick Question

2015-08-29 Thread Larry North
Hey there, Not sure if you got my last email but wanted to touch base again. I was wondering if you wanted to try our email marketing and lead generation solutions. We can help to grow your business fast by using our services. We have worked on a number of projects and campaigns, all our packages