Skip to content

Commit b8b7292

Browse files
Yossi LevyYossi Levy
authored andcommitted
astyle fix
1 parent 1d71fb1 commit b8b7292

33 files changed

+33
-33
lines changed

components/storage/blockdevice/COMPONENT_DATAFLASH/DataFlashBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ bd_size_t DataFlashBlockDevice::size() const
527527
return device_size;
528528
}
529529

530-
const char * DataFlashBlockDevice::get_type()
530+
const char *DataFlashBlockDevice::get_type()
531531
{
532532
return "DATAFLASH";
533533
}

components/storage/blockdevice/COMPONENT_DATAFLASH/DataFlashBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ class DataFlashBlockDevice : public mbed::BlockDevice {
157157
*
158158
* @return A string represent the BlockDevice class type.
159159
*/
160-
virtual const char * get_type();
160+
virtual const char *get_type();
161161

162162
private:
163163
// Master side hardware

components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ bd_size_t FlashIAPBlockDevice::size() const
248248
return _size;
249249
}
250250

251-
const char * FlashIAPBlockDevice::get_type()
251+
const char *FlashIAPBlockDevice::get_type()
252252
{
253253
return "FLASHIAP";
254254
}

components/storage/blockdevice/COMPONENT_FLASHIAP/FlashIAPBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class FlashIAPBlockDevice : public mbed::BlockDevice {
125125
*
126126
* @return A string represent the BlockDevice class type.
127127
*/
128-
virtual const char * get_type();
128+
virtual const char *get_type();
129129

130130
private:
131131
// Device configuration

components/storage/blockdevice/COMPONENT_QSPIF/QSPIFBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ bd_size_t QSPIFBlockDevice::get_erase_size() const
477477
return _min_common_erase_size;
478478
}
479479

480-
const char * QSPIFBlockDevice::get_type()
480+
const char *QSPIFBlockDevice::get_type()
481481
{
482482
return "QSPIF";
483483
}

components/storage/blockdevice/COMPONENT_QSPIF/QSPIFBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ class QSPIFBlockDevice : public mbed::BlockDevice {
215215
*
216216
* @return A string represent the BlockDevice class type.
217217
*/
218-
virtual const char * get_type();
218+
virtual const char *get_type();
219219

220220
private:
221221
// Internal functions

components/storage/blockdevice/COMPONENT_RSPIF/SPIFReducedBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ bd_size_t SPIFReducedBlockDevice::size() const
344344
return _size;
345345
}
346346

347-
const char * SPIFReducedBlockDevice::get_type()
347+
const char *SPIFReducedBlockDevice::get_type()
348348
{
349349
return "SPIFR";
350350
}

components/storage/blockdevice/COMPONENT_RSPIF/SPIFReducedBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ class SPIFReducedBlockDevice : public mbed::BlockDevice {
159159
*
160160
* @return A string represent the BlockDevice class type.
161161
*/
162-
virtual const char * get_type();
162+
virtual const char *get_type();
163163

164164
private:
165165
// Master side hardware

components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ bd_size_t SDBlockDevice::size() const
632632
return _block_size * _sectors;
633633
}
634634

635-
const char * SDBlockDevice::get_type()
635+
const char *SDBlockDevice::get_type()
636636
{
637637
return "SD";
638638
}

components/storage/blockdevice/COMPONENT_SD/SDBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class SDBlockDevice : public mbed::BlockDevice {
120120
*
121121
* @return A string represent the BlockDevice class type.
122122
*/
123-
virtual const char * get_type();
123+
virtual const char *get_type();
124124

125125
private:
126126
/* Commands : Listed below are commands supported

components/storage/blockdevice/COMPONENT_SPIF/SPIFBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ int SPIFBlockDevice::get_erase_value() const
472472
return 0xFF;
473473
}
474474

475-
const char * SPIFBlockDevice::get_type()
475+
const char *SPIFBlockDevice::get_type()
476476
{
477477
return "SPIF";
478478
}

components/storage/blockdevice/COMPONENT_SPIF/SPIFBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ class SPIFBlockDevice : public mbed::BlockDevice {
193193
*
194194
* @return A string represent the BlockDevice class type.
195195
*/
196-
virtual const char * get_type();
196+
virtual const char *get_type();
197197

198198
private:
199199

features/storage/blockdevice/BlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class BlockDevice {
238238
*
239239
* @return A string represent the BlockDevice class type.
240240
*/
241-
virtual const char * get_type() = 0;
241+
virtual const char *get_type() = 0;
242242
};
243243

244244
} // namespace mbed

features/storage/blockdevice/BufferedBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ bd_size_t BufferedBlockDevice::size() const
330330
return _bd_size;
331331
}
332332

333-
const char * BufferedBlockDevice::get_type()
333+
const char *BufferedBlockDevice::get_type()
334334
{
335335
if (_bd != NULL) {
336336
return _bd->get_type();

features/storage/blockdevice/BufferedBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class BufferedBlockDevice : public BlockDevice {
156156
*
157157
* @return A string represent the BlockDevice class type.
158158
*/
159-
virtual const char * get_type();
159+
virtual const char *get_type();
160160

161161
protected:
162162
BlockDevice *_bd;

features/storage/blockdevice/ChainingBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ bd_size_t ChainingBlockDevice::size() const
283283
return _size;
284284
}
285285

286-
const char * ChainingBlockDevice::get_type()
286+
const char *ChainingBlockDevice::get_type()
287287
{
288288
return "CHAINING";
289289
}

features/storage/blockdevice/ChainingBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class ChainingBlockDevice : public BlockDevice {
176176
*
177177
* @return A string represent the BlockDevice class type.
178178
*/
179-
virtual const char * get_type();
179+
virtual const char *get_type();
180180

181181
protected:
182182
BlockDevice **_bds;

features/storage/blockdevice/ExhaustibleBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ bd_size_t ExhaustibleBlockDevice::size() const
194194
return _bd->size();
195195
}
196196

197-
const char * ExhaustibleBlockDevice::get_type()
197+
const char *ExhaustibleBlockDevice::get_type()
198198
{
199199
if (_bd != NULL) {
200200
return _bd->get_type();

features/storage/blockdevice/ExhaustibleBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ class ExhaustibleBlockDevice : public BlockDevice {
158158
*
159159
* @return A string represent the BlockDevice class type.
160160
*/
161-
virtual const char * get_type();
161+
virtual const char *get_type();
162162

163163
private:
164164
BlockDevice *_bd;

features/storage/blockdevice/FlashSimBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ int FlashSimBlockDevice::get_erase_value() const
212212
return _erase_value;
213213
}
214214

215-
const char * FlashSimBlockDevice::get_type()
215+
const char *FlashSimBlockDevice::get_type()
216216
{
217217
if (_bd != NULL) {
218218
return _bd->get_type();

features/storage/blockdevice/FlashSimBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class FlashSimBlockDevice : public BlockDevice {
140140
*
141141
* @return A string represent the BlockDevice class type.
142142
*/
143-
virtual const char * get_type();
143+
virtual const char *get_type();
144144

145145
private:
146146
uint8_t _erase_value;

features/storage/blockdevice/HeapBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ int HeapBlockDevice::erase(bd_addr_t addr, bd_size_t size)
183183
return 0;
184184
}
185185

186-
const char * HeapBlockDevice::get_type()
186+
const char *HeapBlockDevice::get_type()
187187
{
188188
return "HEAP";
189189
}

features/storage/blockdevice/HeapBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ class HeapBlockDevice : public BlockDevice {
154154
*
155155
* @return A string represent the BlockDevice class type.
156156
*/
157-
virtual const char * get_type();
157+
virtual const char *get_type();
158158

159159
private:
160160
bd_size_t _read_size;

features/storage/blockdevice/MBRBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ int MBRBlockDevice::get_partition_number() const
423423
return _part;
424424
}
425425

426-
const char * MBRBlockDevice::get_type()
426+
const char *MBRBlockDevice::get_type()
427427
{
428428
if (_bd != NULL) {
429429
return _bd->get_type();

features/storage/blockdevice/MBRBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ class MBRBlockDevice : public BlockDevice {
253253
*
254254
* @return A string represent the BlockDevice class type.
255255
*/
256-
virtual const char * get_type();
256+
virtual const char *get_type();
257257

258258
protected:
259259
BlockDevice *_bd;

features/storage/blockdevice/ObservingBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ bd_size_t ObservingBlockDevice::size() const
111111
return _bd->size();
112112
}
113113

114-
const char * ObservingBlockDevice::get_type()
114+
const char *ObservingBlockDevice::get_type()
115115
{
116116
if (_bd != NULL) {
117117
return _bd->get_type();

features/storage/blockdevice/ObservingBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class ObservingBlockDevice : public BlockDevice {
144144
*
145145
* @return A string represent the BlockDevice class type.
146146
*/
147-
virtual const char * get_type();
147+
virtual const char *get_type();
148148

149149
private:
150150
BlockDevice *_bd;

features/storage/blockdevice/ProfilingBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ bd_size_t ProfilingBlockDevice::get_erase_count() const
121121
return _erase_count;
122122
}
123123

124-
const char * ProfilingBlockDevice::get_type()
124+
const char *ProfilingBlockDevice::get_type()
125125
{
126126
if (_bd != NULL) {
127127
return _bd->get_type();

features/storage/blockdevice/ProfilingBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class ProfilingBlockDevice : public BlockDevice {
183183
*
184184
* @return A string represent the BlockDevice class type.
185185
*/
186-
virtual const char * get_type();
186+
virtual const char *get_type();
187187

188188
private:
189189
BlockDevice *_bd;

features/storage/blockdevice/ReadOnlyBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ bd_size_t ReadOnlyBlockDevice::size() const
101101
return _bd->size();
102102
}
103103

104-
const char * ReadOnlyBlockDevice::get_type()
104+
const char *ReadOnlyBlockDevice::get_type()
105105
{
106106
if (_bd != NULL) {
107107
return _bd->get_type();

features/storage/blockdevice/ReadOnlyBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class ReadOnlyBlockDevice : public BlockDevice {
137137
*
138138
* @return A string represent the BlockDevice class type.
139139
*/
140-
virtual const char * get_type();
140+
virtual const char *get_type();
141141

142142
private:
143143
BlockDevice *_bd;

features/storage/blockdevice/SlicingBlockDevice.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ bd_size_t SlicingBlockDevice::size() const
121121
return _stop - _start;
122122
}
123123

124-
const char * SlicingBlockDevice::get_type()
124+
const char *SlicingBlockDevice::get_type()
125125
{
126126
if (_bd != NULL) {
127127
return _bd->get_type();

features/storage/blockdevice/SlicingBlockDevice.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ class SlicingBlockDevice : public BlockDevice {
167167
*
168168
* @return A string represent the BlockDevice class type.
169169
*/
170-
virtual const char * get_type();
170+
virtual const char *get_type();
171171

172172
protected:
173173
BlockDevice *_bd;

0 commit comments

Comments
 (0)