3 produits achetés = le 4ème offert. Livraison offerte dès 39€ d’achat

2012-07-13 Thread 3Suisses par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE1OTI4JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAxMjowMDowMiZlPTEmaD0xNTkyNyZmPTE1OTI4Jmc9MTU5Mjg=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE1OTI4JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAxMjowMDowMiZlPTEmaD0xNTkyNyZmPTE1OTI4Jmc9MTU5Mjg=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


RE: [PATCH v5 6/6] spi: s3c64xx: add device tree support

2012-07-13 Thread Kukjin Kim
Thomas Abraham wrote:
 
 On 13 July 2012 04:08, Kukjin Kim kgene@samsung.com wrote:
  Thomas, the DMACH_DT_PROP is available only on pl330 now. So seems occur
  following build error with s3c6400_defconfig.
 
  drivers/spi/spi-s3c64xx.c: In function 's3c64xx_spi_get_dmares':
  drivers/spi/spi-s3c64xx.c:1098: error: 'DMACH_DT_PROP' undeclared (first
 use
  in this function)
  drivers/spi/spi-s3c64xx.c:1098: error: (Each undeclared identifier is
  reported only once
  drivers/spi/spi-s3c64xx.c:1098: error: for each function it appears in.)
  make[3]: *** [drivers/spi/spi-s3c64xx.o] Error 1
  make[2]: *** [drivers/spi] Error 2
 
 
 Dear Mr. Kim,
 
 Thanks for considering these patches to be merged via your tree. For
 the build break you mentioned above, there was a patch submitted some
 time back to handle this. The link to that patch is:
 http://lists.infradead.org/pipermail/linux-arm-kernel/2012-
 June/102627.html.
 Could you please apply this patch also to your tree.
 
Sure, it looks good to me, will apply that then this series will be rebased
on top of that.

Thanks.

Best regards,
Kgene.
--
Kukjin Kim kgene@samsung.com, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Re: [PATCH v5 6/6] spi: s3c64xx: add device tree support

2012-07-13 Thread Thomas Abraham
On 13 July 2012 16:58, Kukjin Kim kgene@samsung.com wrote:
 Thomas Abraham wrote:

 On 13 July 2012 04:08, Kukjin Kim kgene@samsung.com wrote:
  Thomas, the DMACH_DT_PROP is available only on pl330 now. So seems occur
  following build error with s3c6400_defconfig.
 
  drivers/spi/spi-s3c64xx.c: In function 's3c64xx_spi_get_dmares':
  drivers/spi/spi-s3c64xx.c:1098: error: 'DMACH_DT_PROP' undeclared (first
 use
  in this function)
  drivers/spi/spi-s3c64xx.c:1098: error: (Each undeclared identifier is
  reported only once
  drivers/spi/spi-s3c64xx.c:1098: error: for each function it appears in.)
  make[3]: *** [drivers/spi/spi-s3c64xx.o] Error 1
  make[2]: *** [drivers/spi] Error 2
 

 Dear Mr. Kim,

 Thanks for considering these patches to be merged via your tree. For
 the build break you mentioned above, there was a patch submitted some
 time back to handle this. The link to that patch is:
 http://lists.infradead.org/pipermail/linux-arm-kernel/2012-
 June/102627.html.
 Could you please apply this patch also to your tree.

 Sure, it looks good to me, will apply that then this series will be rebased
 on top of that.

There are six more patches that enable spi device tree support for
Exynos4 and Exynos5 platforms. Could you consider to apply those
patches as well. The link to those patches is:
http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg10851.html.

Thanks,
Thomas.

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[PATCH 01/11] spi/imx: make spi_imx_data.devtype_data member point to const data

2012-07-13 Thread y
From: Uwe Kleine-König u.kleine-koe...@pengutronix.de

This prepares of_device_id.data becoming const. Without this change the
following warning would occur:

drivers/spi/spi-imx.c: In function spi_imx_probe:
drivers/spi/spi-imx.c:814:24: warning: assignment discards const 
qualifier from pointer target type [enabled by default]

Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de
Cc: spi-devel-general@lists.sourceforge.net
---
 drivers/spi/spi-imx.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c
index 47877d6..b09fc77 100644
--- a/drivers/spi/spi-imx.c
+++ b/drivers/spi/spi-imx.c
@@ -97,7 +97,7 @@ struct spi_imx_data {
const void *tx_buf;
unsigned int txfifo; /* number of words pushed in tx FIFO */
 
-   struct spi_imx_devtype_data *devtype_data;
+   const struct spi_imx_devtype_data *devtype_data;
int chipselect[0];
 };
 
-- 
1.7.10.4


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[PATCH 08/11] spi/spi-omap2-mcspi: add a const qualifier

2012-07-13 Thread y
From: Uwe Kleine-König u.kleine-koe...@pengutronix.de

This prepares of_device_id.data becoming const. Without this change
the following warning would occur:

drivers/spi/spi-omap2-mcspi.c: In function 'omap2_mcspi_probe':
drivers/spi/spi-omap2-mcspi.c:1118: warning: assignment discards 
qualifiers from pointer target type

Signed-off-by: Uwe Kleine-König u.kleine-koe...@pengutronix.de
Cc: spi-devel-general@lists.sourceforge.net
---
 drivers/spi/spi-omap2-mcspi.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-omap2-mcspi.c b/drivers/spi/spi-omap2-mcspi.c
index 0c73dd4..3455769 100644
--- a/drivers/spi/spi-omap2-mcspi.c
+++ b/drivers/spi/spi-omap2-mcspi.c
@@ -1087,7 +1087,7 @@ MODULE_DEVICE_TABLE(of, omap_mcspi_of_match);
 static int __devinit omap2_mcspi_probe(struct platform_device *pdev)
 {
struct spi_master   *master;
-   struct omap2_mcspi_platform_config *pdata;
+   const struct omap2_mcspi_platform_config *pdata;
struct omap2_mcspi  *mcspi;
struct resource *r;
int status = 0, i;
-- 
1.7.10.4


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Re: [PATCH 00/11] make struct of_device_id.data const

2012-07-13 Thread Uwe Kleine-König
Hello,

On Fri, Jul 13, 2012 at 02:32:02PM +0200, y...@pengutronix.de wrote:
This is utter non-sense, it was me who sent these mails (and pressed 'y'
when git send-email asked if Uwe Kleine-König
u.kleine-koe...@pengutronix.de is the right sender). Please make sure
to correct this when replying to the patches.

Sorry for the inconvenience.

Best regards
Uwe
-- 
Pengutronix e.K.   | Uwe Kleine-König|
Industrial Linux Solutions | http://www.pengutronix.de/  |

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[PATCH] spi: Add support for specifing 3-wire mode via device tree

2012-07-13 Thread Lars-Peter Clausen
This patch allows to specify that a SPI device is connected in 3-wire mode via
the device tree.

Signed-off-by: Lars-Peter Clausen l...@metafoo.de
---
 Documentation/devicetree/bindings/spi/spi-bus.txt |2 ++
 drivers/spi/spi.c |2 ++
 2 files changed, 4 insertions(+)

diff --git a/Documentation/devicetree/bindings/spi/spi-bus.txt 
b/Documentation/devicetree/bindings/spi/spi-bus.txt
index e782add..46f2f3b 100644
--- a/Documentation/devicetree/bindings/spi/spi-bus.txt
+++ b/Documentation/devicetree/bindings/spi/spi-bus.txt
@@ -33,6 +33,8 @@ contain the following properties.
shifted clock phase (CPHA) mode
 - spi-cs-high - (optional) Empty property indicating device requires
chip select active high
+- spi-3wire   - (optional) Empty property indicating device requires
+   3-wire mode.
 
 SPI example for an MPC5200 SPI bus:
spi@f00 {
diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index fc0da39..09da7de 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -856,6 +856,8 @@ static void of_register_spi_devices(struct spi_master 
*master)
spi-mode |= SPI_CPOL;
if (of_find_property(nc, spi-cs-high, NULL))
spi-mode |= SPI_CS_HIGH;
+   if (of_find_property(nc, spi-3wire, NULL))
+   spi-mode |= SPI_3WIRE;
 
/* Device speed */
prop = of_get_property(nc, spi-max-frequency, len);
-- 
1.7.10.4


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Re: [PATCH] spi: Add support for specifing 3-wire mode via device tree

2012-07-13 Thread Rob Herring
On 07/13/2012 07:43 AM, Lars-Peter Clausen wrote:
 This patch allows to specify that a SPI device is connected in 3-wire mode via
 the device tree.
 
 Signed-off-by: Lars-Peter Clausen l...@metafoo.de
 ---

Might explain what 3-wire mode is, but otherwise

Acked-by: Rob Herring rob.herr...@calxeda.com

  Documentation/devicetree/bindings/spi/spi-bus.txt |2 ++
  drivers/spi/spi.c |2 ++
  2 files changed, 4 insertions(+)
 
 diff --git a/Documentation/devicetree/bindings/spi/spi-bus.txt 
 b/Documentation/devicetree/bindings/spi/spi-bus.txt
 index e782add..46f2f3b 100644
 --- a/Documentation/devicetree/bindings/spi/spi-bus.txt
 +++ b/Documentation/devicetree/bindings/spi/spi-bus.txt
 @@ -33,6 +33,8 @@ contain the following properties.
   shifted clock phase (CPHA) mode
  - spi-cs-high - (optional) Empty property indicating device requires
   chip select active high
 +- spi-3wire   - (optional) Empty property indicating device requires
 + 3-wire mode.
  
  SPI example for an MPC5200 SPI bus:
   spi@f00 {
 diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
 index fc0da39..09da7de 100644
 --- a/drivers/spi/spi.c
 +++ b/drivers/spi/spi.c
 @@ -856,6 +856,8 @@ static void of_register_spi_devices(struct spi_master 
 *master)
   spi-mode |= SPI_CPOL;
   if (of_find_property(nc, spi-cs-high, NULL))
   spi-mode |= SPI_CS_HIGH;
 + if (of_find_property(nc, spi-3wire, NULL))
 + spi-mode |= SPI_3WIRE;
  
   /* Device speed */
   prop = of_get_property(nc, spi-max-frequency, len);
 


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


RE: [PATCH v5 6/6] spi: s3c64xx: add device tree support

2012-07-13 Thread Kukjin Kim
Thomas Abraham wrote:
 
 On 13 July 2012 16:58, Kukjin Kim kgene@samsung.com wrote:
  Thomas Abraham wrote:
 
  On 13 July 2012 04:08, Kukjin Kim kgene@samsung.com wrote:
   Thomas, the DMACH_DT_PROP is available only on pl330 now. So seems
 occur
   following build error with s3c6400_defconfig.
  
   drivers/spi/spi-s3c64xx.c: In function 's3c64xx_spi_get_dmares':
   drivers/spi/spi-s3c64xx.c:1098: error: 'DMACH_DT_PROP' undeclared
 (first
  use
   in this function)
   drivers/spi/spi-s3c64xx.c:1098: error: (Each undeclared identifier is
   reported only once
   drivers/spi/spi-s3c64xx.c:1098: error: for each function it appears
 in.)
   make[3]: *** [drivers/spi/spi-s3c64xx.o] Error 1
   make[2]: *** [drivers/spi] Error 2
  
 
  Dear Mr. Kim,
 
  Thanks for considering these patches to be merged via your tree. For
  the build break you mentioned above, there was a patch submitted some
  time back to handle this. The link to that patch is:
  http://lists.infradead.org/pipermail/linux-arm-kernel/2012-
  June/102627.html.
  Could you please apply this patch also to your tree.
 
  Sure, it looks good to me, will apply that then this series will be
 rebased
  on top of that.
 
 There are six more patches that enable spi device tree support for
 Exynos4 and Exynos5 platforms. Could you consider to apply those
 patches as well. The link to those patches is:
 http://www.mail-archive.com/linux-samsung-
 s...@vger.kernel.org/msg10851.html.
 
Yeah, I remember, but I think some patches is needed to re-work as per
comments...?

Thanks.

Best regards,
Kgene.
--
Kukjin Kim kgene@samsung.com, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Re: [PATCH v5 6/6] spi: s3c64xx: add device tree support

2012-07-13 Thread Thomas Abraham
On 13 July 2012 19:12, Kukjin Kim kgene@samsung.com wrote:
 Thomas Abraham wrote:

 On 13 July 2012 16:58, Kukjin Kim kgene@samsung.com wrote:
  Thomas Abraham wrote:
 
  On 13 July 2012 04:08, Kukjin Kim kgene@samsung.com wrote:
   Thomas, the DMACH_DT_PROP is available only on pl330 now. So seems
 occur
   following build error with s3c6400_defconfig.
  
   drivers/spi/spi-s3c64xx.c: In function 's3c64xx_spi_get_dmares':
   drivers/spi/spi-s3c64xx.c:1098: error: 'DMACH_DT_PROP' undeclared
 (first
  use
   in this function)
   drivers/spi/spi-s3c64xx.c:1098: error: (Each undeclared identifier is
   reported only once
   drivers/spi/spi-s3c64xx.c:1098: error: for each function it appears
 in.)
   make[3]: *** [drivers/spi/spi-s3c64xx.o] Error 1
   make[2]: *** [drivers/spi] Error 2
  
 
  Dear Mr. Kim,
 
  Thanks for considering these patches to be merged via your tree. For
  the build break you mentioned above, there was a patch submitted some
  time back to handle this. The link to that patch is:
  http://lists.infradead.org/pipermail/linux-arm-kernel/2012-
  June/102627.html.
  Could you please apply this patch also to your tree.
 
  Sure, it looks good to me, will apply that then this series will be
 rebased
  on top of that.

 There are six more patches that enable spi device tree support for
 Exynos4 and Exynos5 platforms. Could you consider to apply those
 patches as well. The link to those patches is:
 http://www.mail-archive.com/linux-samsung-
 s...@vger.kernel.org/msg10851.html.

 Yeah, I remember, but I think some patches is needed to re-work as per
 comments...?

I checked again for any pending comments on v2 version. There are no
pending comments for the v2 version of this patch series. Thanks.

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Offre du jour : jusqu'à -96 pour cent

2012-07-13 Thread Cdiscount par Galeriedesmarques.fr
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT04JmI9MTU3NTEmYz0xOTYxNjQxJmQ9MjAxMi0wNy0xMyAxNzoxMDowMSZlPTEmaD0xNTc1MCZmPTE1NzUxJmc9MTU3NTE=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT04JmI9MTU3NTEmYz0xOTYxNjQxJmQ9MjAxMi0wNy0xMyAxNzoxMDowMSZlPTEmaD0xNTc1MCZmPTE1NzUxJmc9MTU3NTE=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


[SPAM] Sua nova Livraria

2012-07-13 Thread Novidades a você
Seu cliente de e-mail não pode ler este e-mail.
Para visualizá-lo on-line, por favor, clique aqui:
http://apalones.com/mail2/display.php?M=15016944C=803fd340c8cabae509334e1f4c347c10S=757L=316N=213


Para parar de receber nossos
Emails:http://apalones.com/mail2/unsubscribe.php?M=15016944C=803fd340c8cabae509334e1f4c347c10L=316N=757
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Des travaux sans tracas

2012-07-13 Thread Camif Habitat par France Patrimoine



 
Découvrez nottre offre en image

(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 

 
 

 
 

 
 

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 Vous avez des difficultés pour afficher ce message ? Consultez la version en 
ligne
 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 Découvrez 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 nottre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 offre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 en 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 image 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 Découvrez 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 nottre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 offre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 en 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 image 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 Découvrez 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 nottre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 offre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 en 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 image 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 Découvrez 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 nottre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 offre 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 

 
 
 
 en 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 image 
(http://adsenzia.solution.weborama.fr/fcgi-bin/performance.fcgi?ID=432862A=1L=716903C=30340f=0P=48251T=EURL=http%3A%2F%2Fprojects.adsenzia.com%2Fwww%2Fcamif%2F20120220%2F)

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 

 
 
 
 
 
 
 
 

 
 
 
 
 
 
 

Soldes 3eme démarque jusqu'à -75%

2012-07-13 Thread Daxon par Planduweb
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE1ODM3JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMzowMDowMSZlPTEmaD0xNTgzNiZmPTE1ODM3Jmc9MTU4Mzc=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE1ODM3JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMzowMDowMSZlPTEmaD0xNTgzNiZmPTE1ODM3Jmc9MTU4Mzc=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


2ème démarque jusqu'à -70%

2012-07-13 Thread Lee Cooper par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE1NzMyJmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMToyMDowMSZlPTEmaD0xNTczMSZmPTE1NzMyJmc9MTU3MzI=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE1NzMyJmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMToyMDowMSZlPTEmaD0xNTczMSZmPTE1NzMyJmc9MTU3MzI=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


-80% sur des bagages de grandes marques

2012-07-13 Thread Monde du Bagage par Planduweb
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE1ODM2JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMzo0MDowMSZlPTEmaD0xNTgzNSZmPTE1ODM2Jmc9MTU4MzY=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE1ODM2JmM9NDgzNjEyJmQ9MjAxMi0wNy0xMyAyMzo0MDowMSZlPTEmaD0xNTgzNSZmPTE1ODM2Jmc9MTU4MzY=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Solde 3ème démarques jusqu'à -80% sur tout le site

2012-07-13 Thread Blancheporte par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE1ODgwJmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNDoxMDowMSZlPTEmaD0xNTg3OSZmPTE1ODgwJmc9MTU4ODA=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE1ODgwJmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNDoxMDowMSZlPTEmaD0xNTg3OSZmPTE1ODgwJmc9MTU4ODA=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


Réservez votre hotel de luxe et de charme jusqu'à -70%

2012-07-13 Thread Splendia par Planduweb
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE2MDQyJmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNToyMDowMSZlPTEmaD0xNjA0MSZmPTE2MDQyJmc9MTYwNDI=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE2MDQyJmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNToyMDowMSZlPTEmaD0xNjA0MSZmPTE2MDQyJmc9MTYwNDI=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general


17 îles de rêve à découvrir

2012-07-13 Thread Nouvelles Antilles par Duano
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML

Lien miroir : 
http://m10-fr.com/mc10_m/YT0xMyZiPTE2MDQ2JmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNTozMDowMSZlPTEmaD0xNjA0NSZmPTE2MDQ2Jmc9MTYwNDY=

Lien de désinscription : 
http://m10-fr.com/mc10_unsub/YT0xMyZiPTE2MDQ2JmM9NDgzNjEyJmQ9MjAxMi0wNy0xNCAwNTozMDowMSZlPTEmaD0xNjA0NSZmPTE2MDQ2Jmc9MTYwNDY=


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
spi-devel-general mailing list
spi-devel-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spi-devel-general