Skip to content

Commit b41a080

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/bart/ide-2.6: piix: The Sony TZ90 needs the cable type hardcoding icside: register second channel of version 6 PCB ide-tape: remove back-to-back REQUEST_SENSE detection
2 parents 5fe4990 + d878829 commit b41a080

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

drivers/ide/icside.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ icside_register_v6(struct icside_state *state, struct expansion_card *ec)
466466
struct ide_host *host;
467467
unsigned int sel = 0;
468468
int ret;
469-
hw_regs_t hw[2], *hws[] = { &hw[0], NULL, NULL, NULL };
469+
hw_regs_t hw[2], *hws[] = { &hw[0], &hw[1], NULL, NULL };
470470
struct ide_port_info d = icside_v6_port_info;
471471

472472
ioc_base = ecardm_iomap(ec, ECARD_RES_IOCFAST, 0, 0);

drivers/ide/ide-tape.c

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -614,12 +614,6 @@ static ide_startstop_t ide_tape_issue_pc(ide_drive_t *drive,
614614
{
615615
idetape_tape_t *tape = drive->driver_data;
616616

617-
if (drive->pc->c[0] == REQUEST_SENSE &&
618-
pc->c[0] == REQUEST_SENSE) {
619-
printk(KERN_ERR "ide-tape: possible ide-tape.c bug - "
620-
"Two request sense in serial were issued\n");
621-
}
622-
623617
if (drive->failed_pc == NULL && pc->c[0] != REQUEST_SENSE)
624618
drive->failed_pc = pc;
625619

drivers/ide/piix.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,7 @@ static const struct ich_laptop ich_laptop[] = {
263263
{ 0x24CA, 0x1025, 0x003d }, /* ICH4 on ACER TM290 */
264264
{ 0x266F, 0x1025, 0x0066 }, /* ICH6 on ACER Aspire 1694WLMi */
265265
{ 0x2653, 0x1043, 0x82D8 }, /* ICH6M on Asus Eee 701 */
266+
{ 0x27df, 0x104d, 0x900e }, /* ICH7 on Sony TZ-90 */
266267
/* end marker */
267268
{ 0, }
268269
};

0 commit comments

Comments
 (0)