Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6: ide-cd: signedness warning fix again
This commit is contained in:
commit
c7ca6b0fcf
1 changed files with 2 additions and 1 deletions
|
@ -778,7 +778,8 @@ static ide_startstop_t ide_cd_do_request(ide_drive_t *drive, struct request *rq,
|
|||
sector_t block)
|
||||
{
|
||||
struct ide_cmd cmd;
|
||||
int uptodate = 0, nsectors;
|
||||
int uptodate = 0;
|
||||
unsigned int nsectors;
|
||||
|
||||
ide_debug_log(IDE_DBG_RQ, "cmd: 0x%x, block: %llu",
|
||||
rq->cmd[0], (unsigned long long)block);
|
||||
|
|
Loading…
Reference in a new issue