public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: mushtaq khan <mushtaq_k@procsys.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] U-boot-testing.
Date: Sat, 16 Jun 2007 11:54:16 +0530	[thread overview]
Message-ID: <46738210.1080505@procsys.com> (raw)
In-Reply-To: <466A4E3B.20007@procsys.com>


Hi Wolfgang Denk,

       I had submitted the sata patch with respect to u-boot-testing 
repository.I  didn't get any feedbac, what is the next step? Please let 
me know.

Thanks,
-Mushtaq


mushtaq khan wrote:

> Hi  Wolfgang Denk,
>
>   Attached a sata patch with respect to u-boot-testing repository, 
> this resolves the proto-type mismatch between sata_read and block_read.
>
> Thanks,
> -Mushtaq
>
>
> Wolfgang Denk wrote:
>
>> Hello,
>>
>> in message <46652EF4.1030707@procsys.com> you wrote:
>>  
>>
>>> I tested my patches in u-boot-testing
>>> 1. Clearing of bss section patch  and
>>> 2. Sata patch.
>>>   
>>
>>
>> Thanks.
>>
>>  
>>
>>> I will bring these changes to my patch. And after testing , i will 
>>> re-submit the patch.
>>>   
>>
>>
>> No. Please submit a new patch against current top-of-tree in the
>> u-boot-testing repository.
>>
>> Thanks.
>>
>> Best regards,
>>
>> Wolfgang Denk
>>
>>  
>>
>
>------------------------------------------------------------------------
>
>diff -purN u-boot-testing/common/cmd_sata.c u-boot-testing_chg/common/cmd_sata.c
>--- u-boot-testing/common/cmd_sata.c	2007-06-05 12:05:10.000000000 +0530
>+++ u-boot-testing_chg/common/cmd_sata.c	2007-06-07 13:46:55.000000000 +0530
>@@ -375,9 +375,9 @@ msleep (int count)
> }
> 
> ulong
>-sata_read (int device, lbaint_t blknr, ulong blkcnt, ulong * buffer)
>+sata_read (int device, ulong blknr,lbaint_t blkcnt, void * buff)
> {
>-	ulong n = 0;
>+	ulong n = 0, *buffer = (ulong *)buff;
> 	u8 dev = 0, num = 0, mask = 0, status = 0;
> 
> #ifdef CONFIG_LBA48
>@@ -482,9 +482,9 @@ sata_read (int device, lbaint_t blknr, u
> }
> 
> ulong
>-sata_write (int device, lbaint_t blknr, ulong blkcnt, ulong * buffer)
>+sata_write (int device, ulong blknr,lbaint_t blkcnt, void * buff)
> {
>-	ulong n = 0;
>+	ulong n = 0, *buffer = (ulong *)buff;
> 	unsigned char status = 0, num = 0, dev = 0, mask = 0;
> 
> #ifdef CONFIG_LBA48
>diff -purN u-boot-testing/include/sata.h u-boot-testing_chg/include/sata.h
>--- u-boot-testing/include/sata.h	2007-06-05 12:05:11.000000000 +0530
>+++ u-boot-testing_chg/include/sata.h	2007-06-07 13:43:08.000000000 +0530
>@@ -28,8 +28,8 @@ struct sata_port {
> 	struct sata_ioports ioaddr;	/* ATA cmd/ctl/dma reg blks	*/
> 	unsigned char ctl_reg;
> 	unsigned char last_ctl;
>-	unsigned char port_state;	/* 1-port is present and	*/
>-					   0-port is not available	*/
>+	unsigned char port_state;	/* 1-port is available and	*/
>+					/* 0-port is not available	*/
> 	unsigned char dev_mask;
> };
> 
>@@ -74,18 +74,18 @@ int sata_devchk (struct sata_ioports *io
> void dev_select (struct sata_ioports *ioaddr, int dev);
> u8 sata_busy_wait (struct sata_ioports *ioaddr, int bits, unsigned int max);
> u8 sata_chk_status (struct sata_ioports *ioaddr);
>-ulong sata_read (int device, lbaint_t blknr, ulong blkcnt, ulong * buffer);
>-ulong sata_write (int device, lbaint_t blknr, ulong blkcnt, ulong * buffer);
>+ulong sata_read (int device, ulong blknr,lbaint_t blkcnt, void * buffer);
>+ulong sata_write (int device,ulong blknr, lbaint_t blkcnt, void * buffer);
> void msleep (int count);
> #else
> extern int sata_bus_softreset (int num);
> extern void sata_identify (int num, int dev);
> extern void sata_port (struct sata_ioports *ioport);
> extern void set_Feature_cmd (int num, int dev);
>-extern ulong sata_read (int device, lbaint_t blknr,
>-			ulong blkcnt, ulong * buffer);
>-extern ulong sata_write (int device, lbaint_t blknr,
>-			 ulong blkcnt, ulong * buffer);
>+extern ulong sata_read (int device, ulong blknr,
>+			lbaint_t blkcnt, void * buffer);
>+extern ulong sata_write (int device, ulong blknr,
>+			lbaint_t blkcnt, void * buffer);
> extern void msleep (int count);
> #endif
> 
>  
>

  reply	other threads:[~2007-06-16  6:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20070605101705.825E1353A97@atlas.denx.de>
2007-06-09  6:52 ` [U-Boot-Users] U-boot-testing mushtaq khan
2007-06-16  6:24   ` mushtaq khan [this message]
2007-06-17 16:50     ` Leonid
2007-06-17 21:11     ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=46738210.1080505@procsys.com \
    --to=mushtaq_k@procsys.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox