diff options
author | Len Brown <len.brown@intel.com> | 2010-08-15 01:06:31 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-08-15 01:06:31 -0400 |
commit | 95ee46aa8698f2000647dfb362400fadbb5807cf (patch) | |
tree | e5a05c7297f997e191c73091934e42e3195c0e40 /fs/partitions/atari.c | |
parent | cfa806f059801dbe7e435745eb2e187c8bfe1e7f (diff) | |
parent | 92fa5bd9a946b6e7aab6764e7312e4e3d9bed295 (diff) |
Merge branch 'linus' into release
Conflicts:
drivers/acpi/debug.c
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'fs/partitions/atari.c')
-rw-r--r-- | fs/partitions/atari.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/partitions/atari.c b/fs/partitions/atari.c index 4439ff1b6cec..9875b05e80a2 100644 --- a/fs/partitions/atari.c +++ b/fs/partitions/atari.c | |||
@@ -62,7 +62,7 @@ int atari_partition(struct parsed_partitions *state) | |||
62 | } | 62 | } |
63 | 63 | ||
64 | pi = &rs->part[0]; | 64 | pi = &rs->part[0]; |
65 | printk (" AHDI"); | 65 | strlcat(state->pp_buf, " AHDI", PAGE_SIZE); |
66 | for (slot = 1; pi < &rs->part[4] && slot < state->limit; slot++, pi++) { | 66 | for (slot = 1; pi < &rs->part[4] && slot < state->limit; slot++, pi++) { |
67 | struct rootsector *xrs; | 67 | struct rootsector *xrs; |
68 | Sector sect2; | 68 | Sector sect2; |
@@ -81,7 +81,7 @@ int atari_partition(struct parsed_partitions *state) | |||
81 | #ifdef ICD_PARTS | 81 | #ifdef ICD_PARTS |
82 | part_fmt = 1; | 82 | part_fmt = 1; |
83 | #endif | 83 | #endif |
84 | printk(" XGM<"); | 84 | strlcat(state->pp_buf, " XGM<", PAGE_SIZE); |
85 | partsect = extensect = be32_to_cpu(pi->st); | 85 | partsect = extensect = be32_to_cpu(pi->st); |
86 | while (1) { | 86 | while (1) { |
87 | xrs = read_part_sector(state, partsect, §2); | 87 | xrs = read_part_sector(state, partsect, §2); |
@@ -120,14 +120,14 @@ int atari_partition(struct parsed_partitions *state) | |||
120 | break; | 120 | break; |
121 | } | 121 | } |
122 | } | 122 | } |
123 | printk(" >"); | 123 | strlcat(state->pp_buf, " >", PAGE_SIZE); |
124 | } | 124 | } |
125 | #ifdef ICD_PARTS | 125 | #ifdef ICD_PARTS |
126 | if ( part_fmt!=1 ) { /* no extended partitions -> test ICD-format */ | 126 | if ( part_fmt!=1 ) { /* no extended partitions -> test ICD-format */ |
127 | pi = &rs->icdpart[0]; | 127 | pi = &rs->icdpart[0]; |
128 | /* sanity check: no ICD format if first partition invalid */ | 128 | /* sanity check: no ICD format if first partition invalid */ |
129 | if (OK_id(pi->id)) { | 129 | if (OK_id(pi->id)) { |
130 | printk(" ICD<"); | 130 | strlcat(state->pp_buf, " ICD<", PAGE_SIZE); |
131 | for (; pi < &rs->icdpart[8] && slot < state->limit; slot++, pi++) { | 131 | for (; pi < &rs->icdpart[8] && slot < state->limit; slot++, pi++) { |
132 | /* accept only GEM,BGM,RAW,LNX,SWP partitions */ | 132 | /* accept only GEM,BGM,RAW,LNX,SWP partitions */ |
133 | if (!((pi->flg & 1) && OK_id(pi->id))) | 133 | if (!((pi->flg & 1) && OK_id(pi->id))) |
@@ -137,13 +137,13 @@ int atari_partition(struct parsed_partitions *state) | |||
137 | be32_to_cpu(pi->st), | 137 | be32_to_cpu(pi->st), |
138 | be32_to_cpu(pi->siz)); | 138 | be32_to_cpu(pi->siz)); |
139 | } | 139 | } |
140 | printk(" >"); | 140 | strlcat(state->pp_buf, " >", PAGE_SIZE); |
141 | } | 141 | } |
142 | } | 142 | } |
143 | #endif | 143 | #endif |
144 | put_dev_sector(sect); | 144 | put_dev_sector(sect); |
145 | 145 | ||
146 | printk ("\n"); | 146 | strlcat(state->pp_buf, "\n", PAGE_SIZE); |
147 | 147 | ||
148 | return 1; | 148 | return 1; |
149 | } | 149 | } |