From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752086AbbFVTOp (ORCPT ); Mon, 22 Jun 2015 15:14:45 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:35740 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751178AbbFVTOg (ORCPT ); Mon, 22 Jun 2015 15:14:36 -0400 From: =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= To: gregkh@linuxfoundation.org Cc: marek.belisko@gmail.com, joe@perches.com, tapaswenipathak@gmail.com, mahfouz.saif.elyazal@gmail.com, tinajohnson.1234@gmail.com, gulsah.1004@gmail.com, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, =?UTF-8?q?Giedrius=20Statkevi=C4=8Dius?= Subject: [PATCH] staging: ft1000: convert pack pragma to __packed__ attribute Date: Mon, 22 Jun 2015 22:12:44 +0300 Message-Id: <1435000364-14556-1-git-send-email-giedrius.statkevicius@gmail.com> X-Mailer: git-send-email 2.4.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Convert a Microsoft compiler specific directive "#pragma pack(1)" to a GCC equivalent __attribute__ ((__packed__)). Also, by doing this we save ourselves from trouble if any other struct definitions are added after the #pragma because it will be applied to all of the definitions following it. Signed-off-by: Giedrius Statkevičius --- drivers/staging/ft1000/ft1000-usb/ft1000_download.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c index 5def347..345c256 100644 --- a/drivers/staging/ft1000/ft1000-usb/ft1000_download.c +++ b/drivers/staging/ft1000/ft1000-usb/ft1000_download.c @@ -95,7 +95,6 @@ struct dsp_file_hdr { long nDspImages; /* Number of DSP images in file. */ }; -#pragma pack(1) struct dsp_image_info { long coff_date; /* Date/time when DSP Coff image was built. */ long begin_offset; /* Offset in file where image begins. */ @@ -105,7 +104,7 @@ struct dsp_image_info { long version; /* Embedded version # of DSP code. */ unsigned short checksum; /* DSP File checksum */ unsigned short pad1; -}; +} __attribute__ ((__packed__)); /* checks if the doorbell register is cleared */ -- 2.4.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in Please read the FAQ at http://www.tux.org/lkml/