Prev: [PATCH 1/3] arch/mips/txx9/generic: init dynamic bin_attribute structures
Next: linux-next: build failure after merge of the final tree (backlight related)
From: Wolfram Sang on 12 Mar 2010 02:10 Commit 6992f5334995af474c2b58d010d08bc597f0f2fe introduced this requirement. Found with coccinelle, but fixed manually. Compile tested on X86 where possible. Signed-off-by: Wolfram Sang <w.sang(a)pengutronix.de> Cc: Paul Gortmaker <p_gortmaker(a)yahoo.com> Cc: Alessandro Zummo <a.zummo(a)towertech.it> Cc: Eric W. Biederman <ebiederm(a)xmission.com> --- drivers/rtc/rtc-ds1742.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/rtc/rtc-ds1742.c b/drivers/rtc/rtc-ds1742.c index a127336..cad9ceb 100644 --- a/drivers/rtc/rtc-ds1742.c +++ b/drivers/rtc/rtc-ds1742.c @@ -184,6 +184,7 @@ static int __devinit ds1742_rtc_probe(struct platform_device *pdev) pdata->size_nvram = pdata->size - RTC_SIZE; pdata->ioaddr_rtc = ioaddr + pdata->size_nvram; + sysfs_bin_attr_init(&pdata->nvram_attr); pdata->nvram_attr.attr.name = "nvram"; pdata->nvram_attr.attr.mode = S_IRUGO | S_IWUSR; pdata->nvram_attr.read = ds1742_nvram_read; -- 1.7.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |