Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 62015
b: refs/heads/master
c: f8f1e1c
h: refs/heads/master
i:
  62013: 721d546
  62011: b82cac2
  62007: 1373e76
  61999: 2065b91
  61983: 1526d45
  61951: b28b183
v: v3
  • Loading branch information
Tejun Heo authored and Jeff Garzik committed Jul 20, 2007
1 parent b36b50a commit e543fb0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1ae463171cc1b1ea6dad7bcb298e96c073e7373e
refs/heads/master: f8f1e1cc0cd4d75c73e9a55a0ede8958e4fa14f1
7 changes: 4 additions & 3 deletions trunk/include/linux/libata.h
Original file line number Diff line number Diff line change
Expand Up @@ -915,16 +915,17 @@ extern void __ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...);
extern void ata_ehi_push_desc(struct ata_eh_info *ehi, const char *fmt, ...);
extern void ata_ehi_clear_desc(struct ata_eh_info *ehi);

static inline void __ata_ehi_hotplugged(struct ata_eh_info *ehi)
static inline void ata_ehi_schedule_probe(struct ata_eh_info *ehi)
{
ehi->flags |= ATA_EHI_HOTPLUGGED | ATA_EHI_RESUME_LINK;
ehi->flags |= ATA_EHI_RESUME_LINK;
ehi->action |= ATA_EH_SOFTRESET;
ehi->probe_mask |= (1 << ATA_MAX_DEVICES) - 1;
}

static inline void ata_ehi_hotplugged(struct ata_eh_info *ehi)
{
__ata_ehi_hotplugged(ehi);
ata_ehi_schedule_probe(ehi);
ehi->flags |= ATA_EHI_HOTPLUGGED;
ehi->err_mask |= AC_ERR_ATA_BUS;
}

Expand Down

0 comments on commit e543fb0

Please sign in to comment.