diff options
author | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-03-02 02:57:33 -0500 |
---|---|---|
committer | Dominik Brodowski <linux@dominikbrodowski.net> | 2010-03-03 02:32:15 -0500 |
commit | 6e83ee075ed74941ccaad4fec503f6b24646e7e0 (patch) | |
tree | 388dad55e7996e686f022607c12e426051b368ed /drivers/pcmcia/rsrc_mgr.c | |
parent | f25e188c892a9a82f8c3babf6fda304fff8cb3cc (diff) |
pcmcia: CodingStyle fixes
Fix most of the remaining CodingStyle issues in drivers/pcmcia , which
related to wrong indent -- PCMCIA historically used 4 spaces. Also, remove
a custom min() implementation with the generic one.
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'drivers/pcmcia/rsrc_mgr.c')
-rw-r--r-- | drivers/pcmcia/rsrc_mgr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pcmcia/rsrc_mgr.c b/drivers/pcmcia/rsrc_mgr.c index e6f7d410aed6..452c83b512c4 100644 --- a/drivers/pcmcia/rsrc_mgr.c +++ b/drivers/pcmcia/rsrc_mgr.c | |||
@@ -79,9 +79,8 @@ static resource_size_t pcmcia_align(void *align_data, | |||
79 | 79 | ||
80 | #ifdef CONFIG_X86 | 80 | #ifdef CONFIG_X86 |
81 | if (res->flags & IORESOURCE_IO) { | 81 | if (res->flags & IORESOURCE_IO) { |
82 | if (start & 0x300) { | 82 | if (start & 0x300) |
83 | start = (start + 0x3ff) & ~0x3ff; | 83 | start = (start + 0x3ff) & ~0x3ff; |
84 | } | ||
85 | } | 84 | } |
86 | #endif | 85 | #endif |
87 | 86 | ||