mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-04 18:18:03 +07:00

* Now that ide_hwif_t instances are allocated dynamically the difference between MAX_HWIFS == 2 and MAX_HWIFS == 10 is ~100 bytes (x86-32) so use MAX_HWIFS == 10 on all archs except these ones that use MAX_HWIFS == 1. * Define MAX_HWIFS in <linux/ide.h> instead of <asm/ide.h>. [ Please note that avr32/cris/v850 have no <asm/ide.h> and alpha/ia64/sh always define CONFIG_IDE_MAX_HWIFS. ] Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
25 lines
916 B
C
25 lines
916 B
C
/****************************************************************************/
|
|
|
|
/*
|
|
* linux/include/asm-h8300/ide.h
|
|
*
|
|
* Copyright (C) 1994-1996 Linus Torvalds & authors
|
|
* Copyright (C) 2001 Lineo Inc., davidm@snapgear.com
|
|
* Copyright (C) 2002 Greg Ungerer (gerg@snapgear.com)
|
|
* Copyright (C) 2002 Yoshinori Sato (ysato@users.sourceforge.jp)
|
|
*/
|
|
|
|
/****************************************************************************/
|
|
#ifndef _H8300_IDE_H
|
|
#define _H8300_IDE_H
|
|
/****************************************************************************/
|
|
#ifdef __KERNEL__
|
|
/****************************************************************************/
|
|
|
|
#include <asm-generic/ide_iops.h>
|
|
|
|
/****************************************************************************/
|
|
#endif /* __KERNEL__ */
|
|
#endif /* _H8300_IDE_H */
|
|
/****************************************************************************/
|