Skip to content
Commit 815b6cb3 authored by Damien Le Moal's avatar Damien Le Moal
Browse files

ata: ahci_ceva: Fix id array access in ceva_ahci_read_id()



ATA IDENTIFY command returns an array of le16 words. Accessing it as a
u16 array triggers the following sparse warning:

drivers/ata/ahci_ceva.c:107:33: warning: invalid assignment: &=
drivers/ata/ahci_ceva.c:107:33:    left side has type unsigned short
drivers/ata/ahci_ceva.c:107:33:    right side has type restricted __le16

Use a local variable to explicitly cast the id array to __le16 to avoid
this warning.

Signed-off-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
parent 0fcfb00b
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment