diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/device.h | 1 | ||||
| -rw-r--r-- | include/linux/libata.h | 1 | ||||
| -rw-r--r-- | include/linux/pci_ids.h | 2 | ||||
| -rw-r--r-- | include/linux/workqueue.h | 6 |
4 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 5b595fdfb672..6d2345d86082 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -378,6 +378,7 @@ extern void device_bind_driver(struct device * dev); | |||
| 378 | extern void device_release_driver(struct device * dev); | 378 | extern void device_release_driver(struct device * dev); |
| 379 | extern int device_attach(struct device * dev); | 379 | extern int device_attach(struct device * dev); |
| 380 | extern void driver_attach(struct device_driver * drv); | 380 | extern void driver_attach(struct device_driver * drv); |
| 381 | extern void device_reprobe(struct device *dev); | ||
| 381 | 382 | ||
| 382 | 383 | ||
| 383 | /* | 384 | /* |
diff --git a/include/linux/libata.h b/include/linux/libata.h index 239408ecfddf..204c37a55f06 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -508,7 +508,6 @@ extern void ata_host_set_remove(struct ata_host_set *host_set); | |||
| 508 | extern int ata_scsi_detect(struct scsi_host_template *sht); | 508 | extern int ata_scsi_detect(struct scsi_host_template *sht); |
| 509 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); | 509 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); |
| 510 | extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)); | 510 | extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *)); |
| 511 | extern enum scsi_eh_timer_return ata_scsi_timed_out(struct scsi_cmnd *cmd); | ||
| 512 | extern int ata_scsi_error(struct Scsi_Host *host); | 511 | extern int ata_scsi_error(struct Scsi_Host *host); |
| 513 | extern void ata_eh_qc_complete(struct ata_queued_cmd *qc); | 512 | extern void ata_eh_qc_complete(struct ata_queued_cmd *qc); |
| 514 | extern void ata_eh_qc_retry(struct ata_queued_cmd *qc); | 513 | extern void ata_eh_qc_retry(struct ata_queued_cmd *qc); |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index b9810ddf435a..ec3c32932620 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -852,6 +852,8 @@ | |||
| 852 | #define PCI_DEVICE_ID_QLOGIC_ISP2432 0x2432 | 852 | #define PCI_DEVICE_ID_QLOGIC_ISP2432 0x2432 |
| 853 | #define PCI_DEVICE_ID_QLOGIC_ISP2512 0x2512 | 853 | #define PCI_DEVICE_ID_QLOGIC_ISP2512 0x2512 |
| 854 | #define PCI_DEVICE_ID_QLOGIC_ISP2522 0x2522 | 854 | #define PCI_DEVICE_ID_QLOGIC_ISP2522 0x2522 |
| 855 | #define PCI_DEVICE_ID_QLOGIC_ISP5422 0x5422 | ||
| 856 | #define PCI_DEVICE_ID_QLOGIC_ISP5432 0x5432 | ||
| 855 | 857 | ||
| 856 | #define PCI_VENDOR_ID_CYRIX 0x1078 | 858 | #define PCI_VENDOR_ID_CYRIX 0x1078 |
| 857 | #define PCI_DEVICE_ID_CYRIX_5510 0x0000 | 859 | #define PCI_DEVICE_ID_CYRIX_5510 0x0000 |
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index 86b111300231..957c21c16d62 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h | |||
| @@ -20,6 +20,10 @@ struct work_struct { | |||
| 20 | struct timer_list timer; | 20 | struct timer_list timer; |
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | struct execute_work { | ||
| 24 | struct work_struct work; | ||
| 25 | }; | ||
| 26 | |||
| 23 | #define __WORK_INITIALIZER(n, f, d) { \ | 27 | #define __WORK_INITIALIZER(n, f, d) { \ |
| 24 | .entry = { &(n).entry, &(n).entry }, \ | 28 | .entry = { &(n).entry, &(n).entry }, \ |
| 25 | .func = (f), \ | 29 | .func = (f), \ |
| @@ -74,6 +78,8 @@ extern void init_workqueues(void); | |||
| 74 | void cancel_rearming_delayed_work(struct work_struct *work); | 78 | void cancel_rearming_delayed_work(struct work_struct *work); |
| 75 | void cancel_rearming_delayed_workqueue(struct workqueue_struct *, | 79 | void cancel_rearming_delayed_workqueue(struct workqueue_struct *, |
| 76 | struct work_struct *); | 80 | struct work_struct *); |
| 81 | int execute_in_process_context(void (*fn)(void *), void *, | ||
| 82 | struct execute_work *); | ||
| 77 | 83 | ||
| 78 | /* | 84 | /* |
| 79 | * Kill off a pending schedule_delayed_work(). Note that the work callback | 85 | * Kill off a pending schedule_delayed_work(). Note that the work callback |
