mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 08:38:24 +08:00
ide: eliminate warnings in ide-tape.c
drivers/ide/ide-tape.c: In function '__idetape_kmalloc_stage': drivers/ide/ide-tape.c:2588: warning: large integer implicitly truncated to unsigned type drivers/ide/ide-tape.c:2616: warning: large integer implicitly truncated to unsigned type b_size in struct idetape_bh is an unsigned short. We sometimes assigne PAGE_SIZE to it and PAGE_SIZE can be 64K or larger, so make it a u32. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
parent
b37c6b842b
commit
ab0579685d
@ -640,7 +640,7 @@ typedef enum {
|
||||
} idetape_chrdev_direction_t;
|
||||
|
||||
struct idetape_bh {
|
||||
unsigned short b_size;
|
||||
u32 b_size;
|
||||
atomic_t b_count;
|
||||
struct idetape_bh *b_reqnext;
|
||||
char *b_data;
|
||||
|
Loading…
Reference in New Issue
Block a user