mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 04:32:03 +00:00
cb1d0a7a5d
The original "Pass the bus number we expect the S3C24XX SPI driver to attach to via the platform data." [1] patch was mis-sent, and missed two important parts of the diff, which was to actually set the bus_num field and add the relevant field to the platform data. The previous commit50f426b55d
promised to add a bus_num field, but failed to include the two hunks that added this field to include/asm-arm/arch-s3c2410/spi.h and then pass it to the spi core when creating the new master field in drivers/spi/spi_s3c24xx.c. [1] git commit50f426b55d
Signed-off-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
26 lines
694 B
C
26 lines
694 B
C
/* linux/include/asm-arm/arch-s3c2410/spi.h
|
|
*
|
|
* Copyright (c) 2006 Simtec Electronics
|
|
* Ben Dooks <ben@simtec.co.uk>
|
|
*
|
|
* S3C2410 - SPI Controller platform_device info
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_SPI_H
|
|
#define __ASM_ARCH_SPI_H __FILE__
|
|
|
|
struct s3c2410_spi_info {
|
|
unsigned long pin_cs; /* simple gpio cs */
|
|
unsigned int num_cs; /* total chipselects */
|
|
int bus_num; /* bus number to use. */
|
|
|
|
void (*set_cs)(struct s3c2410_spi_info *spi, int cs, int pol);
|
|
};
|
|
|
|
|
|
#endif /* __ASM_ARCH_SPI_H */
|