05 Mar, 2013
1 commit
-
This patch uses module_platform_driver_probe() macro which makes
the code smaller and simpler.Signed-off-by: Jingoo Han
Signed-off-by: Jeff Garzik
15 Jan, 2013
1 commit
-
Use devm_clk_get() rather than clk_get() to make cleanup paths
more simple.Signed-off-by: Jingoo Han
Signed-off-by: Jeff Garzik
19 Sep, 2012
1 commit
-
Platform data for device drivers should be defined in
include/linux/platform_data/*.h, not in the architecture
and platform specific directories.This moves such data out of the samsung include directories
Signed-off-by: Arnd Bergmann
Acked-by: Mark Brown
Acked-by: Greg Kroah-Hartman
Acked-by: Nicolas Pitre
Acked-by: Mauro Carvalho Chehab
Cc: Kukjin Kim
Cc: Kyungmin Park
Cc: Ben Dooks
Cc: Jeff Garzik
Cc: Guenter Roeck
Cc: "Wolfram Sang (embedded platforms)"
Cc: Dmitry Torokhov
Cc: Bryan Wu
Cc: Richard Purdie
Cc: Sylwester Nawrocki
Cc: Chris Ball
Cc: David Woodhouse
Cc: Grant Likely
Cc: Felipe Balbi
Cc: Alan Stern
Cc: Sangbeom Kim
Cc: Liam Girdwood
Cc: linux-samsung-soc@vger.kernel.org
24 Jul, 2011
1 commit
-
Saves text by removing nearly duplicated text format strings by
creating ata__printk functions and printf extension %pV.ata defconfig size shrinks ~5% (~8KB), allyesconfig ~2.5% (~13KB)
Format string duplication comes from:
#define ata_link_printk(link, lv, fmt, args...) do { \
if (sata_pmp_attached((link)->ap) || (link)->ap->slave_link) \
printk("%sata%u.%02u: "fmt, lv, (link)->ap->print_id, \
(link)->pmp , ##args); \
else \
printk("%sata%u: "fmt, lv, (link)->ap->print_id , ##args); \
} while(0)Coalesce long formats.
$ size drivers/ata/built-in.*
text data bss dec hex filename
544969 73893 116584 735446 b38d6 drivers/ata/built-in.allyesconfig.ata.o
558429 73893 117864 750186 b726a drivers/ata/built-in.allyesconfig.dev_level.o
141328 14689 4220 160237 271ed drivers/ata/built-in.defconfig.ata.o
149567 14689 4220 168476 2921c drivers/ata/built-in.defconfig.dev_level.oSigned-off-by: Joe Perches
Signed-off-by: Jeff Garzik
02 Mar, 2011
1 commit
-
Commit 0d5ff566779f894ca9937231a181eb31e4adff0e (libata: convert to iomap)
removed all checks of ATA_FLAG_MMIO but neglected to remove the flag itself.
Do it now, at last...Signed-off-by: Sergei Shtylyov
Signed-off-by: Jeff Garzik
22 Oct, 2010
1 commit
-
Add optional @ap argument to ata_wait_register() and replace msleep()
calls with ata_msleep() which take optional @ap in addition to the
duration. These will be used to implement EH exclusion.This patch doesn't cause any behavior difference.
Signed-off-by: Tejun Heo
Signed-off-by: Jeff Garzik
02 Aug, 2010
1 commit
-
Adds support for the Samsung PATA controller. This driver is based
on the Libata subsystem and references the earlier patches sent for
IDE subsystem.Signed-off-by: Abhilash Kesavan
Signed-off-by: Kukjin Kim
Cc: Ben Dooks
Acked-by: Sergei Shtylyov
Signed-off-by: Jeff Garzik