Missed one during mass conversion (dc14c0c5). Fix it. Spotted by Stephen Rothwell. Signed-off-by: Tejun Heo <htejun@xxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- Stephen Rothwell wrote:
Hi Jeff, Tejun (Heo? I am sorry if I chose the wrong name),
Yeap, Tejun is fine.
Today's build of linux-next produces this warning: drivers/ata/pata_scc.c:1002: warning: initialization discards qualifiers from pointer target type Presumably caused by commit dc14c0c5012855bfc9a5f76056b92f198d52834c ("libata: implement and use ops inheritance").
Thanks for spotting this. I couldn't compile test platform specific ones. Hmm... pata_scc doesn't seem to have platform dependencies, maybe we can drop PPC_CELLEB dependency. drivers/ata/pata_scc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/pata_scc.c b/drivers/ata/pata_scc.c index 07f2d7a..f6a6ce1 100644 --- a/drivers/ata/pata_scc.c +++ b/drivers/ata/pata_scc.c @@ -960,7 +960,7 @@ static struct scsi_host_template scc_sht = { ATA_BMDMA_SHT(DRV_NAME), }; -static const struct ata_port_operations scc_pata_ops = { +static struct ata_port_operations scc_pata_ops = { .inherits = &ata_bmdma_port_ops, .set_piomode = scc_set_piomode, -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html