From: Alexey Dobriyan <adobriyan@gmail.com>
To: kernel-janitors@vger.kernel.org
Subject: [KJ] [PATCH 5/15] FlashPoint: remove UINT
Date: Wed, 06 Jul 2005 23:04:01 +0000 [thread overview]
Message-ID: <200507070304.01967.adobriyan@gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2471 bytes --]
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
---
drivers/scsi/FlashPoint.c | 15 +++++++--------
1 files changed, 7 insertions(+), 8 deletions(-)
Index: linux-flashpoint/drivers/scsi/FlashPoint.c
===================================================================
--- linux-flashpoint.orig/drivers/scsi/FlashPoint.c 2005-07-06 23:41:49.000000000 +0400
+++ linux-flashpoint/drivers/scsi/FlashPoint.c 2005-07-06 23:44:48.000000000 +0400
@@ -40,7 +40,6 @@
#define FAILURE 0xFFFFFFFFL
-typedef unsigned int UINT;
typedef unsigned long ULONG;
@@ -5205,7 +5204,7 @@ static void FPT_dataXferProcessor(ULONG
static void FPT_busMstrSGDataXferStart(ULONG p_port, PSCCB pcurrSCCB)
{
ULONG count,addr,tmpSGCnt;
- UINT sg_index;
+ unsigned int sg_index;
unsigned char sg_count, i;
ULONG reg_offset;
@@ -5231,7 +5230,7 @@ static void FPT_busMstrSGDataXferStart(U
WR_HARPOON(p_port+hp_page_ctrl, i);
while ((sg_count < (unsigned char)SG_BUF_CNT) &&
- ((ULONG)(sg_index * (UINT)SG_ELEMENT_SIZE) < pcurrSCCB->DataLength) ) {
+ ((ULONG)(sg_index * (unsigned int)SG_ELEMENT_SIZE) < pcurrSCCB->DataLength) ) {
tmpSGCnt += *(((ULONG *)pcurrSCCB->DataPointer)+
(sg_index * 2));
@@ -5403,7 +5402,7 @@ static void FPT_hostDataXferAbort(ULONG
ULONG timeout;
ULONG remain_cnt;
- UINT sg_ptr;
+ unsigned int sg_ptr;
FPT_BL_Card[p_card].globalFlags &= ~F_HOST_XFER_ACT;
@@ -5454,9 +5453,9 @@ static void FPT_hostDataXferAbort(ULONG
sg_ptr = pCurrSCCB->Sccb_sgseg + SG_BUF_CNT;
- if (sg_ptr > (UINT)(pCurrSCCB->DataLength / SG_ELEMENT_SIZE)) {
+ if (sg_ptr > (unsigned int)(pCurrSCCB->DataLength / SG_ELEMENT_SIZE)) {
- sg_ptr = (UINT)(pCurrSCCB->DataLength / SG_ELEMENT_SIZE);
+ sg_ptr = (unsigned int)(pCurrSCCB->DataLength / SG_ELEMENT_SIZE);
}
remain_cnt = pCurrSCCB->Sccb_XferCnt;
@@ -5659,7 +5658,7 @@ static void FPT_hostDataXferAbort(ULONG
static void FPT_hostDataXferRestart(PSCCB currSCCB)
{
ULONG data_count;
- UINT sg_index;
+ unsigned int sg_index;
ULONG *sg_ptr;
if (currSCCB->Sccb_XferState & F_SG_XFER) {
@@ -7418,7 +7417,7 @@ static unsigned char FPT_queueFindSccb(P
static void FPT_utilUpdateResidual(PSCCB p_SCCB)
{
ULONG partial_cnt;
- UINT sg_index;
+ unsigned int sg_index;
ULONG *sg_ptr;
if (p_SCCB->Sccb_XferState & F_ALL_XFERRED) {
[-- Attachment #2: Type: text/plain, Size: 168 bytes --]
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors
next reply other threads:[~2005-07-06 23:04 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-06 23:04 Alexey Dobriyan [this message]
2005-07-09 4:27 ` [KJ] [PATCH 5/15] FlashPoint: remove UINT Ricardo Nabinger Sanchez
2005-07-09 4:29 ` Ricardo Nabinger Sanchez
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=200507070304.01967.adobriyan@gmail.com \
--to=adobriyan@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.