diff options
author | Hannes Reinecke <hare@suse.de> | 2021-12-21 08:21:03 +0100 |
---|---|---|
committer | Damien Le Moal <damien.lemoal@opensource.wdc.com> | 2022-01-05 19:33:02 +0900 |
commit | 2f784b923d50cdef1f6bd24d7c18614321b0833a (patch) | |
tree | 8ef71e4ab5ce72a1450a24595a47851aa2bb6b95 /include | |
parent | 5cef96b4207e01c9cdb7752acaa178056fe94632 (diff) | |
download | linux-stable-2f784b923d50cdef1f6bd24d7c18614321b0833a.tar.gz linux-stable-2f784b923d50cdef1f6bd24d7c18614321b0833a.tar.bz2 linux-stable-2f784b923d50cdef1f6bd24d7c18614321b0833a.zip |
ata: libata: drop ata_msg_malloc()
Unused.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/libata.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index e384cce62963..5651bbf4902b 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -76,14 +76,12 @@ enum { ATA_MSG_INFO = 0x0002, ATA_MSG_PROBE = 0x0004, ATA_MSG_WARN = 0x0008, - ATA_MSG_MALLOC = 0x0010, }; #define ata_msg_drv(p) ((p)->msg_enable & ATA_MSG_DRV) #define ata_msg_info(p) ((p)->msg_enable & ATA_MSG_INFO) #define ata_msg_probe(p) ((p)->msg_enable & ATA_MSG_PROBE) #define ata_msg_warn(p) ((p)->msg_enable & ATA_MSG_WARN) -#define ata_msg_malloc(p) ((p)->msg_enable & ATA_MSG_MALLOC) static inline u32 ata_msg_init(int dval, int default_msg_enable_bits) { |