diff options
author | Borislav Petkov <petkovbb@gmail.com> | 2009-05-04 03:53:03 -0400 |
---|---|---|
committer | Borislav Petkov <petkovbb@gmail.com> | 2009-05-15 00:44:38 -0400 |
commit | 19f52a784f7ecb5b51cd73cc4514614b600b995a (patch) | |
tree | 3dcc0d4aa96ed7ed65be8936c81458bb0b22f568 /include/linux/ide.h | |
parent | 55ce3a129ea2e8faba4a11bb5dbc305590d1c20c (diff) |
ide-atapi: remove pc->buf
Now after all users of pc->buf have been converted, remove the 64B buffer
embedded in each packet command.
There should be no functional change resulting from this patch.
Signed-off-by: Borislav Petkov <petkovbb@gmail.com>
Diffstat (limited to 'include/linux/ide.h')
-rw-r--r-- | include/linux/ide.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/ide.h b/include/linux/ide.h index 4cd7157a403f..59aedcd7faee 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -341,11 +341,6 @@ enum { | |||
341 | PC_FLAG_WRITING = (1 << 6), | 341 | PC_FLAG_WRITING = (1 << 6), |
342 | }; | 342 | }; |
343 | 343 | ||
344 | /* | ||
345 | * With each packet command, we allocate a buffer of IDE_PC_BUFFER_SIZE bytes. | ||
346 | * This is used for several packet commands (not for READ/WRITE commands). | ||
347 | */ | ||
348 | #define IDE_PC_BUFFER_SIZE 64 | ||
349 | #define ATAPI_WAIT_PC (60 * HZ) | 344 | #define ATAPI_WAIT_PC (60 * HZ) |
350 | 345 | ||
351 | struct ide_atapi_pc { | 346 | struct ide_atapi_pc { |
@@ -358,10 +353,6 @@ struct ide_atapi_pc { | |||
358 | /* bytes to transfer */ | 353 | /* bytes to transfer */ |
359 | int req_xfer; | 354 | int req_xfer; |
360 | 355 | ||
361 | /* data buffer */ | ||
362 | u8 *buf; | ||
363 | int buf_size; | ||
364 | |||
365 | /* the corresponding request */ | 356 | /* the corresponding request */ |
366 | struct request *rq; | 357 | struct request *rq; |
367 | 358 | ||
@@ -371,8 +362,6 @@ struct ide_atapi_pc { | |||
371 | * those are more or less driver-specific and some of them are subject | 362 | * those are more or less driver-specific and some of them are subject |
372 | * to change/removal later. | 363 | * to change/removal later. |
373 | */ | 364 | */ |
374 | u8 pc_buf[IDE_PC_BUFFER_SIZE]; | ||
375 | |||
376 | unsigned long timeout; | 365 | unsigned long timeout; |
377 | }; | 366 | }; |
378 | 367 | ||