mirror of https://gitee.com/openkylin/linux.git
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
Pull IDE fixes from David Miller: "Two header file inclusion fixes from Rashika Kheria" * git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide: drivers: ide: Include appropriate header file in ide-pio-blacklist.c drivers: ide: Include appropriate header file in ide-cd_verbose.c
This commit is contained in:
commit
3308ee8f45
|
@ -9,7 +9,9 @@
|
||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/blkdev.h>
|
#include <linux/blkdev.h>
|
||||||
#include <linux/cdrom.h>
|
#include <linux/cdrom.h>
|
||||||
|
#include <linux/ide.h>
|
||||||
#include <scsi/scsi.h>
|
#include <scsi/scsi.h>
|
||||||
|
#include "ide-cd.h"
|
||||||
|
|
||||||
#ifndef CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS
|
#ifndef CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS
|
||||||
void ide_cd_log_error(const char *name, struct request *failed_command,
|
void ide_cd_log_error(const char *name, struct request *failed_command,
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/string.h>
|
#include <linux/string.h>
|
||||||
|
#include <linux/ide.h>
|
||||||
|
|
||||||
static struct ide_pio_info {
|
static struct ide_pio_info {
|
||||||
const char *name;
|
const char *name;
|
||||||
|
|
Loading…
Reference in New Issue