summaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/pata_samsung_cf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ata/pata_samsung_cf.c b/drivers/ata/pata_samsung_cf.c
index 951aa951ffdb..898e544a7ae8 100644
--- a/drivers/ata/pata_samsung_cf.c
+++ b/drivers/ata/pata_samsung_cf.c
@@ -241,8 +241,8 @@ static u8 pata_s3c_check_altstatus(struct ata_port *ap)
241/* 241/*
242 * pata_s3c_data_xfer - Transfer data by PIO 242 * pata_s3c_data_xfer - Transfer data by PIO
243 */ 243 */
244unsigned int pata_s3c_data_xfer(struct ata_device *dev, unsigned char *buf, 244static unsigned int pata_s3c_data_xfer(struct ata_device *dev,
245 unsigned int buflen, int rw) 245 unsigned char *buf, unsigned int buflen, int rw)
246{ 246{
247 struct ata_port *ap = dev->link->ap; 247 struct ata_port *ap = dev->link->ap;
248 struct s3c_ide_info *info = ap->host->private_data; 248 struct s3c_ide_info *info = ap->host->private_data;
@@ -418,7 +418,7 @@ static struct ata_port_operations pata_s5p_port_ops = {
418 .set_piomode = pata_s3c_set_piomode, 418 .set_piomode = pata_s3c_set_piomode,
419}; 419};
420 420
421static void pata_s3c_enable(void *s3c_ide_regbase, bool state) 421static void pata_s3c_enable(void __iomem *s3c_ide_regbase, bool state)
422{ 422{
423 u32 temp = readl(s3c_ide_regbase + S3C_ATA_CTRL); 423 u32 temp = readl(s3c_ide_regbase + S3C_ATA_CTRL);
424 temp = state ? (temp | 1) : (temp & ~1); 424 temp = state ? (temp | 1) : (temp & ~1);