mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 06:46:59 +07:00
53f3cc4633
IRQ flags can be obtained from resource structure, there are no need to use additional field in the platform_data to store these values. This patch removes this field and convert existing users of this driver to use IRQ flags from the resources. Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Tejun Heo <tj@kernel.org>
28 lines
625 B
C
28 lines
625 B
C
#ifndef __LINUX_ATA_PLATFORM_H
|
|
#define __LINUX_ATA_PLATFORM_H
|
|
|
|
struct pata_platform_info {
|
|
/*
|
|
* I/O port shift, for platforms with ports that are
|
|
* constantly spaced and need larger than the 1-byte
|
|
* spacing used by ata_std_ports().
|
|
*/
|
|
unsigned int ioport_shift;
|
|
};
|
|
|
|
extern int __pata_platform_probe(struct device *dev,
|
|
struct resource *io_res,
|
|
struct resource *ctl_res,
|
|
struct resource *irq_res,
|
|
unsigned int ioport_shift,
|
|
int __pio_mask);
|
|
|
|
/*
|
|
* Marvell SATA private data
|
|
*/
|
|
struct mv_sata_platform_data {
|
|
int n_ports; /* number of sata ports */
|
|
};
|
|
|
|
#endif /* __LINUX_ATA_PLATFORM_H */
|