linux-i2c.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices
@ 2013-08-08  5:25 Sachin Kamat
  2013-08-15 13:03 ` Wolfram Sang
       [not found] ` <1375939511-7590-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  0 siblings, 2 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-08-08  5:25 UTC (permalink / raw)
  To: linux-i2c, linux-doc; +Cc: wsa, rob, sachin.kamat

__initdata should be placed between the variable name and equal
sign for the variable to be placed in the intended section.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 Documentation/i2c/instantiating-devices |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/i2c/instantiating-devices b/Documentation/i2c/instantiating-devices
index 2218266..c70e7a7 100644
--- a/Documentation/i2c/instantiating-devices
+++ b/Documentation/i2c/instantiating-devices
@@ -19,7 +19,7 @@ i2c_board_info which is registered by calling i2c_register_board_info().
 
 Example (from omap2 h4):
 
-static struct i2c_board_info __initdata h4_i2c_board_info[] = {
+static struct i2c_board_info h4_i2c_board_info[] __initdata = {
 	{
 		I2C_BOARD_INFO("isp1301_omap", 0x2d),
 		.irq		= OMAP_GPIO_IRQ(125),
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices
  2013-08-08  5:25 [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices Sachin Kamat
@ 2013-08-15 13:03 ` Wolfram Sang
  2013-08-17 16:22   ` Sachin Kamat
       [not found] ` <1375939511-7590-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  1 sibling, 1 reply; 4+ messages in thread
From: Wolfram Sang @ 2013-08-15 13:03 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-i2c, linux-doc, rob

[-- Attachment #1: Type: text/plain, Size: 296 bytes --]

On Thu, Aug 08, 2013 at 10:55:11AM +0530, Sachin Kamat wrote:
> __initdata should be placed between the variable name and equal
> sign for the variable to be placed in the intended section.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>

Did this become a rule? Where? When?


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices
  2013-08-15 13:03 ` Wolfram Sang
@ 2013-08-17 16:22   ` Sachin Kamat
  0 siblings, 0 replies; 4+ messages in thread
From: Sachin Kamat @ 2013-08-17 16:22 UTC (permalink / raw)
  To: Wolfram Sang; +Cc: linux-i2c, linux-doc, Rob Landley

On 15 August 2013 18:33, Wolfram Sang <wsa@the-dreams.de> wrote:
> On Thu, Aug 08, 2013 at 10:55:11AM +0530, Sachin Kamat wrote:
>> __initdata should be placed between the variable name and equal
>> sign for the variable to be placed in the intended section.
>>
>> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
>
> Did this become a rule? Where? When?

The correct usage has been documented in the header file init.h where
the macros have been defined.
I quote it below for reference:

For initialized data:
* You should insert __initdata between the variable name and equal
* sign followed by value, e.g.:
*
* static int init_variable __initdata = 0;
* static const char linux_logo[] __initconst = { 0x32, 0x36, ... };



-- 
With warm regards,
Sachin

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices
       [not found] ` <1375939511-7590-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2013-08-19 17:52   ` Wolfram Sang
  0 siblings, 0 replies; 4+ messages in thread
From: Wolfram Sang @ 2013-08-19 17:52 UTC (permalink / raw)
  To: Sachin Kamat
  Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-doc-u79uwXL29TY76Z2rM5mHXA, rob-VoJi6FS/r0vR7s880joybQ

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

On Thu, Aug 08, 2013 at 10:55:11AM +0530, Sachin Kamat wrote:
> __initdata should be placed between the variable name and equal
> sign for the variable to be placed in the intended section.
> 
> Signed-off-by: Sachin Kamat <sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Applied to for-next, thanks!


[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-19 17:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-08  5:25 [PATCH 1/1] Documentation: i2c: Fix example in instantiating-devices Sachin Kamat
2013-08-15 13:03 ` Wolfram Sang
2013-08-17 16:22   ` Sachin Kamat
     [not found] ` <1375939511-7590-1-git-send-email-sachin.kamat-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2013-08-19 17:52   ` Wolfram Sang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).