[SPAM] 企业白领核心办公技能

2012-03-26 Thread 请转相关负责人
ÆóÒµ°×ÁìºËÐİ칫¼¼ÄÜ£¨PPT+Excel£© ʱ¼äµØµã£º2012Äê4ÔÂ19-20ÈÕÉϺ£ ʱ¼äµØµã£º2012Äê4ÔÂ21-22ÈÕÉîÛÚ Ê±¼äµØµã£º2012Äê4ÔÂ27-28ÈÕ±±¾© ·ÑÓãº2600Ôª/ÈË£¨Ìṩ½²Òå¡¢Îç²Í¡¢·¢Æ±¡¢²èµãµÈ£© ÊڿζÔÏó£º×ܾ­Àí£¬¸÷²¿ÃÅÖ÷¹Ü£¬²ÆÎñ²¿¡¢Êг¡²¿¡¢ÓªÏú²¿µÈÏà¹Ø²¿ÃŹ¤×÷ÈËÔ± ×Éѯµç»°£º020-80560638£»020-85917945

Billets de train à 19 Eur0s seulement, reservez vite

2012-03-26 Thread SNCF avec l'Officiel des vacances
Si vous ne visualisez pas correctement ce message, cliquez ici. L'Officiel-des-vacances.com - La r*f*rence des bons plans vacances [IMG]L'*t* commence maintenant Envie de soleil ? Réservez

[PATCH v2 5/5] spi: omap2-mcspi: add support for pm_runtime autosuspend

2012-03-26 Thread Shubhrajyoti D
Adds support for configuring the omap2-mcspi driver use autosuspend for runtime power management. This can reduce the latency in starting an spi transfer by not suspending the device immediately following completion of a transfer. If another transfer then takes place before the autosuspend timeout

[PATCH v2 4/5] spi: omap2-mcspi: use devm_* functions

2012-03-26 Thread Shubhrajyoti D
The various devm_* functions allocate memory that is released when a driver detaches. This patch uses devm_request_and_ioremap to request memory in probe function. Since the freeing is not needed the calls are deleted from remove function.Also use use devm_kzalloc for the cs memory allocation.

[PATCH v2 2/5] spi: omap2-mcspi: make it behave as a module

2012-03-26 Thread Shubhrajyoti D
From: Felipe Balbi ba...@ti.com move probe away from __init section and use platform_driver_register() instead of platform_driver_probe(). Signed-off-by: Felipe Balbi ba...@ti.com Signed-off-by: Shubhrajyoti D shubhrajy...@ti.com --- drivers/spi/spi-omap2-mcspi.c |9 + 1 files

[PATCH v2 1/5] spi/omap: Remove bus_num usage for instance index

2012-03-26 Thread Shubhrajyoti D
From: Benoit Cousson b-cous...@ti.com bus_num was used to reference the mcspi controller instance in a fixed array. Remove this array and store this information directly inside drvdata structure. bus_num is now just set if the pdev-id is present or with -1 for dynamic allocation by SPI core, but

[PATCH] spi-imx: Remove duplicate spi_imx_data definition

2012-03-26 Thread Fabio Estevam
Structure struct spi_imx_data is defined twice. Remove one of its definition. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- drivers/spi/spi-imx.c | 20 +--- 1 files changed, 9 insertions(+), 11 deletions(-) diff --git a/drivers/spi/spi-imx.c

Re: [PATCH] spi-imx: Remove duplicate spi_imx_data definition

2012-03-26 Thread Shubhrajyoti Datta
Hi Fabio, On Mon, Mar 26, 2012 at 11:43 PM, Fabio Estevam fabio.este...@freescale.com wrote: Structure struct spi_imx_data is defined twice. Remove one of its definition. Signed-off-by: Fabio Estevam fabio.este...@freescale.com ---  drivers/spi/spi-imx.c |   20 +---  1

Re: [PATCH] spi-imx: Remove duplicate spi_imx_data definition

2012-03-26 Thread Fabio Estevam
Shubhrajyoti Datta wrote: Hi Fabio, On Mon, Mar 26, 2012 at 11:43 PM, Fabio Estevam fabio.este...@freescale.com wrote: Structure struct spi_imx_data is defined twice. Remove one of its definition. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- drivers/spi/spi-imx.c |

[PATCH v2] spi-imx: Remove duplicate spi_imx_data definition

2012-03-26 Thread Fabio Estevam
Structure struct spi_imx_data is defined twice. Remove one of its definition. In order to do so, it is also necessary to move spi_imx_devtype_data structure after the definition of spi_imx_data. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Changes since v1: - Explain why I

Re: [PATCH] spi-imx: Remove duplicate spi_imx_data definition

2012-03-26 Thread Fabio Estevam
On 3/26/2012 5:59 PM, Uwe Kleine-König wrote: In my version of drivers/spi/spi-imx.c struct spi_imx_data is only defined once. I guess you wanted to say forward declaration. Yes, correct. ... Does this really work? struct spi_imx_data has a member Yes, tested it on a mx31pdk board.