linux-mmc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH Resend 1/7] mmc: ushc: Fix incorrect parameter in sizeof
@ 2013-12-19  8:43 Sachin Kamat
  2013-12-19  8:43 ` [PATCH Resend 2/7] mmc: wmt-sdmmc: Fix NULL pointer dereference Sachin Kamat
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Sachin Kamat @ 2013-12-19  8:43 UTC (permalink / raw)
  To: linux-mmc; +Cc: cjb, sachin.kamat, David Vrabel

sizeof should be of the parent structure type.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: David Vrabel <david.vrabel@csr.com>
---
 drivers/mmc/host/ushc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/ushc.c b/drivers/mmc/host/ushc.c
index c0105a2e269a..d2c386f09d69 100644
--- a/drivers/mmc/host/ushc.c
+++ b/drivers/mmc/host/ushc.c
@@ -504,7 +504,7 @@ static int ushc_probe(struct usb_interface *intf, const struct usb_device_id *id
 		ret = -ENOMEM;
 		goto err;
 	}
-	ushc->csw = kzalloc(sizeof(struct ushc_cbw), GFP_KERNEL);
+	ushc->csw = kzalloc(sizeof(struct ushc_csw), GFP_KERNEL);
 	if (ushc->csw == NULL) {
 		ret = -ENOMEM;
 		goto err;
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [PATCH Resend 1/7] mmc: ushc: Fix incorrect parameter in sizeof
@ 2013-10-30 11:43 Sachin Kamat
  2013-10-30 11:43 ` [PATCH Resend 6/7] mmc: sdhci-dove: Remove redundant of_match_ptr Sachin Kamat
  0 siblings, 1 reply; 9+ messages in thread
From: Sachin Kamat @ 2013-10-30 11:43 UTC (permalink / raw)
  To: linux-mmc; +Cc: cjb, sachin.kamat, David Vrabel

sizeof should be of the parent structure type.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Cc: David Vrabel <david.vrabel@csr.com>
---
Chris,
Resending the pending patches with appropriate acks.
---
 drivers/mmc/host/ushc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/ushc.c b/drivers/mmc/host/ushc.c
index c0105a2..d2c386f 100644
--- a/drivers/mmc/host/ushc.c
+++ b/drivers/mmc/host/ushc.c
@@ -504,7 +504,7 @@ static int ushc_probe(struct usb_interface *intf, const struct usb_device_id *id
 		ret = -ENOMEM;
 		goto err;
 	}
-	ushc->csw = kzalloc(sizeof(struct ushc_cbw), GFP_KERNEL);
+	ushc->csw = kzalloc(sizeof(struct ushc_csw), GFP_KERNEL);
 	if (ushc->csw == NULL) {
 		ret = -ENOMEM;
 		goto err;
-- 
1.7.9.5


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

end of thread, other threads:[~2014-01-13  3:31 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-19  8:43 [PATCH Resend 1/7] mmc: ushc: Fix incorrect parameter in sizeof Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 2/7] mmc: wmt-sdmmc: Fix NULL pointer dereference Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 3/7] mmc: sdhci-spear: " Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 4/7] mmc: davinci: Remove redundant of_match_ptr Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 5/7] mmc: dw_mmc: " Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 6/7] mmc: sdhci-dove: " Sachin Kamat
2013-12-19  8:43 ` [PATCH Resend 7/7] mmc: dw_mmc: Add missing description Sachin Kamat
2014-01-13  3:31 ` [PATCH Resend 1/7] mmc: ushc: Fix incorrect parameter in sizeof Sachin Kamat
  -- strict thread matches above, loose matches on Subject: below --
2013-10-30 11:43 Sachin Kamat
2013-10-30 11:43 ` [PATCH Resend 6/7] mmc: sdhci-dove: Remove redundant of_match_ptr Sachin Kamat

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).