Commit 7bf350b7 authored by Artem Bityutskiy's avatar Artem Bityutskiy

mtd: fix a number of checkpatch complaints

While checking the "__devinit" removal patches with checkpatch.pl, I
noticed several warnings related to a space between the function name
and '(', as well as long lines. I fixed the warnings up in this patch.
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent 810b7e06
...@@ -705,7 +705,7 @@ struct flash_info { ...@@ -705,7 +705,7 @@ struct flash_info {
#define IS_POW2PS 0x0001 /* uses 2^N byte pages */ #define IS_POW2PS 0x0001 /* uses 2^N byte pages */
}; };
static struct flash_info dataflash_data [] = { static struct flash_info dataflash_data[] = {
/* /*
* NOTE: chips with SUP_POW2PS (rev D and up) need two entries, * NOTE: chips with SUP_POW2PS (rev D and up) need two entries,
......
...@@ -100,7 +100,7 @@ static void amd76xrom_cleanup(struct amd76xrom_window *window) ...@@ -100,7 +100,7 @@ static void amd76xrom_cleanup(struct amd76xrom_window *window)
} }
static int amd76xrom_init_one (struct pci_dev *pdev, static int amd76xrom_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent) const struct pci_device_id *ent)
{ {
static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL }; static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL };
...@@ -289,7 +289,7 @@ static int amd76xrom_init_one (struct pci_dev *pdev, ...@@ -289,7 +289,7 @@ static int amd76xrom_init_one (struct pci_dev *pdev,
} }
static void amd76xrom_remove_one (struct pci_dev *pdev) static void amd76xrom_remove_one(struct pci_dev *pdev)
{ {
struct amd76xrom_window *window = &amd76xrom_window; struct amd76xrom_window *window = &amd76xrom_window;
...@@ -347,4 +347,3 @@ module_exit(cleanup_amd76xrom); ...@@ -347,4 +347,3 @@ module_exit(cleanup_amd76xrom);
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
MODULE_AUTHOR("Eric Biederman <ebiederman@lnxi.com>"); MODULE_AUTHOR("Eric Biederman <ebiederman@lnxi.com>");
MODULE_DESCRIPTION("MTD map driver for BIOS chips on the AMD76X southbridge"); MODULE_DESCRIPTION("MTD map driver for BIOS chips on the AMD76X southbridge");
...@@ -30,7 +30,8 @@ ...@@ -30,7 +30,8 @@
#include <linux/io.h> #include <linux/io.h>
#include <asm/unaligned.h> #include <asm/unaligned.h>
#define pr_devinit(fmt, args...) ({ static const char __fmt[] = fmt; printk(__fmt, ## args); }) #define pr_devinit(fmt, args...) \
({ static const char __fmt[] = fmt; printk(__fmt, ## args); })
#define DRIVER_NAME "bfin-async-flash" #define DRIVER_NAME "bfin-async-flash"
......
...@@ -112,7 +112,7 @@ static void ck804xrom_cleanup(struct ck804xrom_window *window) ...@@ -112,7 +112,7 @@ static void ck804xrom_cleanup(struct ck804xrom_window *window)
} }
static int ck804xrom_init_one (struct pci_dev *pdev, static int ck804xrom_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent) const struct pci_device_id *ent)
{ {
static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL }; static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL };
...@@ -320,7 +320,7 @@ static int ck804xrom_init_one (struct pci_dev *pdev, ...@@ -320,7 +320,7 @@ static int ck804xrom_init_one (struct pci_dev *pdev,
} }
static void ck804xrom_remove_one (struct pci_dev *pdev) static void ck804xrom_remove_one(struct pci_dev *pdev)
{ {
struct ck804xrom_window *window = &ck804xrom_window; struct ck804xrom_window *window = &ck804xrom_window;
......
...@@ -378,7 +378,7 @@ static int esb2rom_init_one(struct pci_dev *pdev, ...@@ -378,7 +378,7 @@ static int esb2rom_init_one(struct pci_dev *pdev,
return 0; return 0;
} }
static void esb2rom_remove_one (struct pci_dev *pdev) static void esb2rom_remove_one(struct pci_dev *pdev)
{ {
struct esb2rom_window *window = &esb2rom_window; struct esb2rom_window *window = &esb2rom_window;
esb2rom_cleanup(window); esb2rom_cleanup(window);
......
...@@ -26,7 +26,8 @@ ...@@ -26,7 +26,8 @@
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/types.h> #include <linux/types.h>
#define pr_devinit(fmt, args...) ({ static const char __fmt[] = fmt; printk(__fmt, ## args); }) #define pr_devinit(fmt, args...) \
({ static const char __fmt[] = fmt; printk(__fmt, ## args); })
#define DRIVER_NAME "gpio-addr-flash" #define DRIVER_NAME "gpio-addr-flash"
#define PFX DRIVER_NAME ": " #define PFX DRIVER_NAME ": "
...@@ -142,7 +143,8 @@ static void gf_write(struct map_info *map, map_word d1, unsigned long ofs) ...@@ -142,7 +143,8 @@ static void gf_write(struct map_info *map, map_word d1, unsigned long ofs)
* *
* See gf_copy_from() caveat. * See gf_copy_from() caveat.
*/ */
static void gf_copy_to(struct map_info *map, unsigned long to, const void *from, ssize_t len) static void gf_copy_to(struct map_info *map, unsigned long to,
const void *from, ssize_t len)
{ {
struct async_state *state = gf_map_info_to_state(map); struct async_state *state = gf_map_info_to_state(map);
......
...@@ -84,7 +84,7 @@ static void ichxrom_cleanup(struct ichxrom_window *window) ...@@ -84,7 +84,7 @@ static void ichxrom_cleanup(struct ichxrom_window *window)
} }
static int ichxrom_init_one (struct pci_dev *pdev, static int ichxrom_init_one(struct pci_dev *pdev,
const struct pci_device_id *ent) const struct pci_device_id *ent)
{ {
static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL }; static char *rom_probe_types[] = { "cfi_probe", "jedec_probe", NULL };
...@@ -315,7 +315,7 @@ static int ichxrom_init_one (struct pci_dev *pdev, ...@@ -315,7 +315,7 @@ static int ichxrom_init_one (struct pci_dev *pdev,
} }
static void ichxrom_remove_one (struct pci_dev *pdev) static void ichxrom_remove_one(struct pci_dev *pdev)
{ {
struct ichxrom_window *window = &ichxrom_window; struct ichxrom_window *window = &ichxrom_window;
ichxrom_cleanup(window); ichxrom_cleanup(window);
......
...@@ -149,7 +149,8 @@ static void sa1100_destroy(struct sa_info *info, struct flash_platform_data *pla ...@@ -149,7 +149,8 @@ static void sa1100_destroy(struct sa_info *info, struct flash_platform_data *pla
plat->exit(); plat->exit();
} }
static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev, struct flash_platform_data *plat) static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev,
struct flash_platform_data *plat)
{ {
struct sa_info *info; struct sa_info *info;
int nr, size, i, ret = 0; int nr, size, i, ret = 0;
......
...@@ -316,13 +316,17 @@ static int jz_nand_ioremap_resource(struct platform_device *pdev, ...@@ -316,13 +316,17 @@ static int jz_nand_ioremap_resource(struct platform_device *pdev,
return ret; return ret;
} }
static inline void jz_nand_iounmap_resource(struct resource *res, void __iomem *base) static inline void jz_nand_iounmap_resource(struct resource *res,
void __iomem *base)
{ {
iounmap(base); iounmap(base);
release_mem_region(res->start, resource_size(res)); release_mem_region(res->start, resource_size(res));
} }
static int jz_nand_detect_bank(struct platform_device *pdev, struct jz_nand *nand, unsigned char bank, size_t chipnr, uint8_t *nand_maf_id, uint8_t *nand_dev_id) { static int jz_nand_detect_bank(struct platform_device *pdev,
struct jz_nand *nand, unsigned char bank,
size_t chipnr, uint8_t *nand_maf_id,
uint8_t *nand_dev_id) {
int ret; int ret;
int gpio; int gpio;
char gpio_name[9]; char gpio_name[9];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment