diff options
-rw-r--r-- | arch/mips/au1000/common/pci.c | 8 | ||||
-rw-r--r-- | arch/mips/kernel/linux32.c | 16 | ||||
-rw-r--r-- | arch/mips/kernel/scall64-n32.S | 4 | ||||
-rw-r--r-- | arch/mips/philips/pnx8550/common/time.c | 1 | ||||
-rw-r--r-- | drivers/ieee1394/sbp2.c | 2 | ||||
-rw-r--r-- | drivers/mmc/at91_mci.c | 11 | ||||
-rw-r--r-- | drivers/mmc/omap.c | 6 |
7 files changed, 31 insertions, 17 deletions
diff --git a/arch/mips/au1000/common/pci.c b/arch/mips/au1000/common/pci.c index da591f674893..9f8ce08e173b 100644 --- a/arch/mips/au1000/common/pci.c +++ b/arch/mips/au1000/common/pci.c | |||
@@ -39,15 +39,15 @@ | |||
39 | 39 | ||
40 | /* TBD */ | 40 | /* TBD */ |
41 | static struct resource pci_io_resource = { | 41 | static struct resource pci_io_resource = { |
42 | .start = PCI_IO_START, | 42 | .start = (resource_size_t)PCI_IO_START, |
43 | .end = PCI_IO_END, | 43 | .end = (resource_size_t)PCI_IO_END, |
44 | .name = "PCI IO space", | 44 | .name = "PCI IO space", |
45 | .flags = IORESOURCE_IO | 45 | .flags = IORESOURCE_IO |
46 | }; | 46 | }; |
47 | 47 | ||
48 | static struct resource pci_mem_resource = { | 48 | static struct resource pci_mem_resource = { |
49 | .start = PCI_MEM_START, | 49 | .start = (resource_size_t)PCI_MEM_START, |
50 | .end = PCI_MEM_END, | 50 | .end = (resource_size_t)PCI_MEM_END, |
51 | .name = "PCI memory space", | 51 | .name = "PCI memory space", |
52 | .flags = IORESOURCE_MEM | 52 | .flags = IORESOURCE_MEM |
53 | }; | 53 | }; |
diff --git a/arch/mips/kernel/linux32.c b/arch/mips/kernel/linux32.c index b061c9aa6302..de3fae260ff8 100644 --- a/arch/mips/kernel/linux32.c +++ b/arch/mips/kernel/linux32.c | |||
@@ -440,14 +440,26 @@ sys32_ipc (u32 call, int first, int second, int third, u32 ptr, u32 fifth) | |||
440 | } | 440 | } |
441 | 441 | ||
442 | #ifdef CONFIG_MIPS32_N32 | 442 | #ifdef CONFIG_MIPS32_N32 |
443 | asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, union semun arg) | 443 | asmlinkage long sysn32_semctl(int semid, int semnum, int cmd, u32 arg) |
444 | { | 444 | { |
445 | /* compat_sys_semctl expects a pointer to union semun */ | 445 | /* compat_sys_semctl expects a pointer to union semun */ |
446 | u32 __user *uptr = compat_alloc_user_space(sizeof(u32)); | 446 | u32 __user *uptr = compat_alloc_user_space(sizeof(u32)); |
447 | if (put_user(ptr_to_compat(arg.__pad), uptr)) | 447 | if (put_user(arg, uptr)) |
448 | return -EFAULT; | 448 | return -EFAULT; |
449 | return compat_sys_semctl(semid, semnum, cmd, uptr); | 449 | return compat_sys_semctl(semid, semnum, cmd, uptr); |
450 | } | 450 | } |
451 | |||
452 | asmlinkage long sysn32_msgsnd(int msqid, u32 msgp, unsigned msgsz, int msgflg) | ||
453 | { | ||
454 | return compat_sys_msgsnd(msqid, msgsz, msgflg, compat_ptr(msgp)); | ||
455 | } | ||
456 | |||
457 | asmlinkage long sysn32_msgrcv(int msqid, u32 msgp, size_t msgsz, int msgtyp, | ||
458 | int msgflg) | ||
459 | { | ||
460 | return compat_sys_msgrcv(msqid, msgsz, msgtyp, msgflg, IPC_64, | ||
461 | compat_ptr(msgp)); | ||
462 | } | ||
451 | #endif | 463 | #endif |
452 | 464 | ||
453 | struct sysctl_args32 | 465 | struct sysctl_args32 |
diff --git a/arch/mips/kernel/scall64-n32.S b/arch/mips/kernel/scall64-n32.S index 34567d81f940..a7bff2a54723 100644 --- a/arch/mips/kernel/scall64-n32.S +++ b/arch/mips/kernel/scall64-n32.S | |||
@@ -187,8 +187,8 @@ EXPORT(sysn32_call_table) | |||
187 | PTR sysn32_semctl | 187 | PTR sysn32_semctl |
188 | PTR sys_shmdt /* 6065 */ | 188 | PTR sys_shmdt /* 6065 */ |
189 | PTR sys_msgget | 189 | PTR sys_msgget |
190 | PTR compat_sys_msgsnd | 190 | PTR sysn32_msgsnd |
191 | PTR compat_sys_msgrcv | 191 | PTR sysn32_msgrcv |
192 | PTR compat_sys_msgctl | 192 | PTR compat_sys_msgctl |
193 | PTR compat_sys_fcntl /* 6070 */ | 193 | PTR compat_sys_fcntl /* 6070 */ |
194 | PTR sys_flock | 194 | PTR sys_flock |
diff --git a/arch/mips/philips/pnx8550/common/time.c b/arch/mips/philips/pnx8550/common/time.c index f80acae07cee..68def3880a1c 100644 --- a/arch/mips/philips/pnx8550/common/time.c +++ b/arch/mips/philips/pnx8550/common/time.c | |||
@@ -79,6 +79,7 @@ void pnx8550_time_init(void) | |||
79 | */ | 79 | */ |
80 | mips_hpt_frequency = 27UL * ((1000000UL * n)/(m * pow2p)); | 80 | mips_hpt_frequency = 27UL * ((1000000UL * n)/(m * pow2p)); |
81 | cpj = (mips_hpt_frequency + HZ / 2) / HZ; | 81 | cpj = (mips_hpt_frequency + HZ / 2) / HZ; |
82 | write_c0_count(0); | ||
82 | timer_ack(); | 83 | timer_ack(); |
83 | 84 | ||
84 | /* Setup Timer 2 */ | 85 | /* Setup Timer 2 */ |
diff --git a/drivers/ieee1394/sbp2.c b/drivers/ieee1394/sbp2.c index 2b5d7ab3adf7..4325aac7733d 100644 --- a/drivers/ieee1394/sbp2.c +++ b/drivers/ieee1394/sbp2.c | |||
@@ -2020,6 +2020,8 @@ static int sbp2scsi_slave_configure(struct scsi_device *sdev) | |||
2020 | blk_queue_dma_alignment(sdev->request_queue, (512 - 1)); | 2020 | blk_queue_dma_alignment(sdev->request_queue, (512 - 1)); |
2021 | sdev->use_10_for_rw = 1; | 2021 | sdev->use_10_for_rw = 1; |
2022 | 2022 | ||
2023 | if (sdev->type == TYPE_ROM) | ||
2024 | sdev->use_10_for_ms = 1; | ||
2023 | if (sdev->type == TYPE_DISK && | 2025 | if (sdev->type == TYPE_DISK && |
2024 | lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8) | 2026 | lu->workarounds & SBP2_WORKAROUND_MODE_SENSE_8) |
2025 | sdev->skip_ms_page_8 = 1; | 2027 | sdev->skip_ms_page_8 = 1; |
diff --git a/drivers/mmc/at91_mci.c b/drivers/mmc/at91_mci.c index 08a33c33f6ed..aa152f31851e 100644 --- a/drivers/mmc/at91_mci.c +++ b/drivers/mmc/at91_mci.c | |||
@@ -768,7 +768,7 @@ static irqreturn_t at91_mmc_det_irq(int irq, void *_host) | |||
768 | return IRQ_HANDLED; | 768 | return IRQ_HANDLED; |
769 | } | 769 | } |
770 | 770 | ||
771 | int at91_mci_get_ro(struct mmc_host *mmc) | 771 | static int at91_mci_get_ro(struct mmc_host *mmc) |
772 | { | 772 | { |
773 | int read_only = 0; | 773 | int read_only = 0; |
774 | struct at91mci_host *host = mmc_priv(mmc); | 774 | struct at91mci_host *host = mmc_priv(mmc); |
@@ -794,7 +794,7 @@ static const struct mmc_host_ops at91_mci_ops = { | |||
794 | /* | 794 | /* |
795 | * Probe for the device | 795 | * Probe for the device |
796 | */ | 796 | */ |
797 | static int at91_mci_probe(struct platform_device *pdev) | 797 | static int __init at91_mci_probe(struct platform_device *pdev) |
798 | { | 798 | { |
799 | struct mmc_host *mmc; | 799 | struct mmc_host *mmc; |
800 | struct at91mci_host *host; | 800 | struct at91mci_host *host; |
@@ -910,7 +910,7 @@ static int at91_mci_probe(struct platform_device *pdev) | |||
910 | /* | 910 | /* |
911 | * Remove a device | 911 | * Remove a device |
912 | */ | 912 | */ |
913 | static int at91_mci_remove(struct platform_device *pdev) | 913 | static int __exit at91_mci_remove(struct platform_device *pdev) |
914 | { | 914 | { |
915 | struct mmc_host *mmc = platform_get_drvdata(pdev); | 915 | struct mmc_host *mmc = platform_get_drvdata(pdev); |
916 | struct at91mci_host *host; | 916 | struct at91mci_host *host; |
@@ -972,8 +972,7 @@ static int at91_mci_resume(struct platform_device *pdev) | |||
972 | #endif | 972 | #endif |
973 | 973 | ||
974 | static struct platform_driver at91_mci_driver = { | 974 | static struct platform_driver at91_mci_driver = { |
975 | .probe = at91_mci_probe, | 975 | .remove = __exit_p(at91_mci_remove), |
976 | .remove = at91_mci_remove, | ||
977 | .suspend = at91_mci_suspend, | 976 | .suspend = at91_mci_suspend, |
978 | .resume = at91_mci_resume, | 977 | .resume = at91_mci_resume, |
979 | .driver = { | 978 | .driver = { |
@@ -984,7 +983,7 @@ static struct platform_driver at91_mci_driver = { | |||
984 | 983 | ||
985 | static int __init at91_mci_init(void) | 984 | static int __init at91_mci_init(void) |
986 | { | 985 | { |
987 | return platform_driver_register(&at91_mci_driver); | 986 | return platform_driver_probe(&at91_mci_driver, at91_mci_probe); |
988 | } | 987 | } |
989 | 988 | ||
990 | static void __exit at91_mci_exit(void) | 989 | static void __exit at91_mci_exit(void) |
diff --git a/drivers/mmc/omap.c b/drivers/mmc/omap.c index 435d331e772a..9488408308fb 100644 --- a/drivers/mmc/omap.c +++ b/drivers/mmc/omap.c | |||
@@ -581,9 +581,9 @@ static void mmc_omap_switch_timer(unsigned long arg) | |||
581 | schedule_work(&host->switch_work); | 581 | schedule_work(&host->switch_work); |
582 | } | 582 | } |
583 | 583 | ||
584 | static void mmc_omap_switch_handler(void *data) | 584 | static void mmc_omap_switch_handler(struct work_struct *work) |
585 | { | 585 | { |
586 | struct mmc_omap_host *host = (struct mmc_omap_host *) data; | 586 | struct mmc_omap_host *host = container_of(work, struct mmc_omap_host, switch_work); |
587 | struct mmc_card *card; | 587 | struct mmc_card *card; |
588 | static int complained = 0; | 588 | static int complained = 0; |
589 | int cards = 0, cover_open; | 589 | int cards = 0, cover_open; |
@@ -1116,7 +1116,7 @@ static int __init mmc_omap_probe(struct platform_device *pdev) | |||
1116 | platform_set_drvdata(pdev, host); | 1116 | platform_set_drvdata(pdev, host); |
1117 | 1117 | ||
1118 | if (host->switch_pin >= 0) { | 1118 | if (host->switch_pin >= 0) { |
1119 | INIT_WORK(&host->switch_work, mmc_omap_switch_handler, host); | 1119 | INIT_WORK(&host->switch_work, mmc_omap_switch_handler); |
1120 | init_timer(&host->switch_timer); | 1120 | init_timer(&host->switch_timer); |
1121 | host->switch_timer.function = mmc_omap_switch_timer; | 1121 | host->switch_timer.function = mmc_omap_switch_timer; |
1122 | host->switch_timer.data = (unsigned long) host; | 1122 | host->switch_timer.data = (unsigned long) host; |