samsung/exynos5250: Replace 'unsigned long int' by 'unsigned long'

As suggested by the linter:

Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary

Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/artifact/lint.txt
Change-Id: I7eddb0934ccd24c9994a60d7058a1e518c6c9c9f
Signed-off-by: Ariel Otilibili <otilibil@eurecom.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/85785
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Maximilian Brune <maximilian.brune@9elements.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Ariel Otilibili 2025-01-11 15:12:39 +01:00 committed by Felix Singer
commit a9d4c40ba5
2 changed files with 4 additions and 4 deletions

View file

@ -95,7 +95,7 @@ static void fimd_bypass(void)
* @param lcdbase pointer to the base address of framebuffer.
* @param pd pointer to the main panel_data structure
*/
void fb_init(unsigned long int fb_size, void *lcdbase,
void fb_init(unsigned long fb_size, void *lcdbase,
struct exynos5_fimd_panel *pd)
{
unsigned int val;
@ -532,7 +532,7 @@ int dp_controller_init(struct s5p_dp_device *dp_device)
* @param lcdbase Base address of LCD frame buffer
* @return 0 if ok, -ve error code on error
*/
int lcd_ctrl_init(unsigned long int fb_size,
int lcd_ctrl_init(unsigned long fb_size,
struct exynos5_fimd_panel *panel_data, void *lcdbase)
{
int ret = 0;

View file

@ -234,9 +234,9 @@ void s5p_dp_wait_hw_link_training_done(struct s5p_dp_device *dp);
/* startup and init */
struct exynos5_fimd_panel;
void fb_init(unsigned long int fb_size, void *lcdbase,
void fb_init(unsigned long fb_size, void *lcdbase,
struct exynos5_fimd_panel *pd);
int dp_controller_init(struct s5p_dp_device *dp_device);
int lcd_ctrl_init(unsigned long int fb_size,
int lcd_ctrl_init(unsigned long fb_size,
struct exynos5_fimd_panel *panel_data, void *lcdbase);
#endif /* CPU_SAMSUNG_EXYNOS5250_DP_CORE_H */