• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootsplash.h>
4 #include <vendorcode/google/chromeos/chromeos.h>
5 
bmp_logo_filename(void)6 const char *bmp_logo_filename(void)
7 {
8 	if (chromeos_device_branded_plus_hard())
9 		return "cb_plus_logo.bmp";
10 	else if (chromeos_device_branded_plus_soft())
11 		return "cb_plus_logo.bmp";
12 	else
13 		return "cb_logo.bmp";
14 }
15