drivers/intel/mipi_camera: Remove unnecessary __packed attribute

This patch removes unnecessary __packed attribute from the structure
defined in chip.h

BUG=None
TEST=Tested WFC camera on Brya

Change-Id: I1174606cd22cd353f01d865d0c25bb6f8f8de055
Signed-off-by: Sugnan Prabhu S <sugnan.prabhu.s@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/55566
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Varshit B Pandya <varshit.b.pandya@intel.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Sugnan Prabhu S 2021-06-16 14:43:11 +05:30 committed by Werner Zeh
parent f6d46f3bac
commit 9418e33aef
1 changed files with 6 additions and 6 deletions

View File

@ -114,31 +114,31 @@ struct clk_config {
uint8_t clknum;
/* frequency setting: 0:24Mhz, 1:19.2 Mhz */
uint8_t freq;
} __packed;
};
struct gpio_config {
uint8_t gpio_num;
} __packed;
};
struct clock_ctrl_panel {
struct clk_config clks[MAX_CLK_CONFIGS];
} __packed;
};
struct gpio_ctrl_panel {
struct gpio_config gpio[MAX_GPIO_CONFIGS];
} __packed;
};
struct operation_type {
enum ctrl_type type;
uint8_t index;
enum action_type action;
uint32_t delay_ms;
} __packed;
};
struct operation_seq {
struct operation_type ops[MAX_PWR_OPS];
uint8_t ops_cnt;
} __packed;
};
struct intel_ssdb {
uint8_t version; /* Current version */