Commit 469f0ab2 authored by Arjan van de Ven's avatar Arjan van de Ven Committed by Greg Kroah-Hartman

[PATCH] USB: fix obsolete header usage in usb storage

drivers/scsi/hosts.h is obsolete, <scsi/scsi_host.h> is the prefered header
nowadays. (hosts.h is just a 1 line wrapper to include it for now anyway)
parent 14283028
......@@ -43,7 +43,7 @@
#include <linux/blkdev.h>
#include "scsi.h"
#include "hosts.h"
#include <scsi/scsi_host.h>
#include "usb.h"
extern void usb_stor_report_device_reset(struct us_data *us);
......
......@@ -49,7 +49,7 @@
#include <linux/smp_lock.h>
#include <linux/completion.h>
#include "scsi.h"
#include "hosts.h"
#include <scsi/scsi_host.h>
struct us_data;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment